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