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