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