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