blob: 4e7c234f27ef56962f23dd6bc17c2f7cfcde581b [file] [log] [blame]
dynamic getNull() => null;
Future<dynamic> getFutureNull() async {}
Future<bool> getFutureBool() async {}
Future<bool> test1() async => await getNull();
Future<bool> test2() => getNull();
bool test3() => getNull();
Future<bool> test4() async => await getFutureNull();
Future<bool> test5() => getFutureNull();
Future<bool> test6() => getFutureBool();
Future<bool> test7() async => getFutureBool();
test() async {}
main() {}