blob: 4d100ef024456e801d3da130a07ae29d116ea767 [file] [log] [blame]
library test;
class A {}
typedef T F<T>();
class C<T extends A> {
C(F<T> f);
}
class NotA {}
NotA myF() => throw '';
test() {}