blob: 726122c6cd67e84bb8a6d9517991153a931ba32c [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() {}