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