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