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