blob: 6f29a5409803132b937313c5eeee5c40041ccb9a [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 test() {}
void main() {}