blob: 9eb7363c9dd76c358ae41710de90566f286622d5 [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() {}