blob: 3f40f23d74aa81da20062b81e1f8b4136380685b [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() {}