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