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