blob: 7acdb8ad1e221fdffdfedea605e89992ad66e7d2 [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 {}