blob: a20676f828c221574dcc5fdc3994be2e49956d67 [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>();