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