blob: d5b5708df3a5858167eafd87080cb849ce0a989e [file] [log] [blame]
// @dart = 2.9
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() {}