blob: fc92324b4814a6aba3f8cbe60af4466737c355e0 [file] [log] [blame]
// @dart = 2.9
library test;
class B<T> {
void f(T x) {}
void g({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() {}