blob: 473132103205d0ef15a26974db0567a87a3fb2e1 [file] [log] [blame]
library test;
typedef void F<T>(T x);
class C<T> {
F<T> f1() => throw '';
List<F<T>> f2() {}
}
void g1(C<num> c) {}
void g2(C<num> c) {}
void g3(C<num> c) {}
void main() {}