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