blob: 82b0389a7acd864ed6d73bfa30528d1a812d8699 [file] [log] [blame]
// @dart = 2.9
library test;
class C<T> {
void f(T x) {}
}
main() {}
void g1(C<num> c) {}
void g2(C<int> c) {}
void g3(C<num> c) {}