blob: ffc529da3129f8f96821d51b0041416c09c9e32b [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() {}