blob: 47ba087f218f9eb6cb4590829ec84df1a4a22754 [file] [log] [blame]
library test;
class C<T> {
void f<U extends T>(U x) {}
void g1<U extends T>() {}
}
void g2(C<Object> c) {}
void main() {}
void test() {}