blob: 8dc39af38e2ce0fe59635e5a916e5bd74c9d482d [file] [log] [blame]
library test;
class B<T> {
void f(T x) {}
void g({T x}) {}
void h<U extends T>() {}
}
class C extends B<int> {}
void g1(B<num> b) {}
void g2(C c) {}
void main() {}
void test() {}