blob: 10f8088bdca81223c367ea4191369f1cf82f493c [file] [log] [blame]
class A {
Future<void> foo(x) async {}
}
class B {
Future<void> bar(x) async {}
}
main() async => [A().foo(await null), B().bar(await null)];