blob: a7724058568f8eb802c239f9896ed211b1bd6eb3 [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) {}