blob: 036efeb2045c27ecc292fbe9d3d46aa68f0d4fa5 [file] [log] [blame]
// @dart = 2.9
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;
}