blob: 305c03920f194f7ce8eb3316e2f2407354c1d0f2 [file] [log] [blame]
library test;
import 'dart:async';
Future f() async {}
Future main() async {}
T F<T>() => null;
abstract class MyStream<T> extends Stream<T> {
factory MyStream() => null;
}