blob: 0bbb3726f6fc2f93f2080ac3b2491d679af382d1 [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() {}