blob: 5cd2e238c315f02e81496ceaf2bbbfec3369f15e [file] [log] [blame]
library test;
class A {}
typedef T F<T>();
class C<T extends A> {
C(F<T> f);
}
class NotA {}
NotA myF() => null;
main() {}