blob: 2f502af4dacc8a08123ae291c79f69a5a9292139 [file] [log] [blame]
// @dart = 2.9
library test;
import 'dart:async';
Iterable<Map<int, int>> bar() sync* {}
Stream<List<int>> foo() async* {}
abstract class MyStream<T> extends Stream<T> {
factory MyStream() => null;
}
main() {}