blob: aff3c3f2acddb8922f0866cca0280fc9c6aeb69e [file] [log] [blame]
library test;
class B<T> {
void f(T x) {}
void g({required T x}) {}
void h<U extends T>() {}
}
class C extends B<int> {}
void g1(B<num> b) {}
void g2(C c) {}
void main() {}
void test() {}