blob: bf282b74130104139c377142142e151da5d70944 [file] [log] [blame]
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() {}