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