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