blob: ca60c6ee13b21466df056bd5657993b77923fcfd [file] [log] [blame]
library test;
import 'dart:async';
Iterable<Map<int, int>> bar() sync* {}
Stream<List<int>> foo() async* {}
abstract class MyStream<T> extends Stream<T> {
factory MyStream() => null;
}
main() {}