blob: 4971ed67b2b498b4346e2e3d4f958332e4b5a9c9 [file] [log] [blame]
// @dart = 2.9
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() {}