blob: 32ad3dbce65d8b5b846d95100771dc0a9463bb20 [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() {}