blob: 731fab7c82a9f89b5956bb695741eaa229484dd1 [file] [log] [blame]
A<Object, X> Function<X extends E>() test2() => throw 0;
A<X, Null> Function<X extends E>() test1() => throw 0;
Null returnsNull<Y extends E>() => null;
X Function<X extends E>() foo() => throw 0;
class A<Supertype, Subtype extends Supertype> {}
extension type E(num it) implements num {}
test3() {}