blob: fba7458dcb2cea4074e5f672688b176543b7f6b3 [file] [log] [blame]
// @dart = 2.9
library test;
class A {}
typedef T F<T>();
class C<T extends A> {
C(F<T> f);
}
class NotA {}
NotA myF() => null;
main() {}