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