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