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