| import 'dart:async'; | |
| Future<int> foo() async => 42; | |
| Future<int> simpleAsyncAwait(Future<int> a, Future<int> b) async {} | |
| Future<int> loops(List<int> list) async {} | |
| Future<int> tryCatchRethrow( | |
| Future<int> a, | |
| Future<int> b, | |
| Future<int> c, | |
| ) async {} | |
| closure(Future<int> a) {} | |
| Future<int> testAssert(Future<int> a) async {} | |
| var asyncInFieldInitializer = (Future<int> x) async { | |
| await x; | |
| }; | |
| main() {} |