blob: 1c9542b0404443c716ee04713db33a11847b8987 [file] [log] [blame]
import 'dart:async';
Future<X?> foo<X extends Object?>(A<X> x) => throw 42;
bar(String? y) {}
class A<X> {}
main() {}
test(A<String> a) async {}
test2(A<String> a) async {}
test3(A<String> a) {}