blob: 3ed7c2d0d00591835987f087fe436aca715b6983 [file] [log] [blame]
// @dart = 2.9
library test;
class C<T> {
F<T> f1() {}
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() {}