blob: 25fb625f51408a0d981bae38ffd56bf1800832e6 [file] [log] [blame]
dynamic getNull() => null;
Stream<dynamic> getStreamNull() async* {}
Stream<bool> getStreamBool() async* {}
Stream<bool> test1() async* {}
Stream<bool> test2() => getNull();
bool test3() => getNull();
Stream<bool> test4() async* {}
Stream<bool> test5() => getStreamNull();
Stream<bool> test6() => getStreamBool();
Stream<bool> test7() async* {}
test() async {}
main() {}