blob: ced786585445c49b67ea1c22a5f9a340505ab5fa [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() => throw '';
}
main() {}