blob: de3fcb1d3198b28fce6871298f4e0b0e6fba0361 [file]
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() {}