blob: d63adb1f8bde5a7d3119093b80bf154311b5ac4f [file] [log] [blame]
// @dart = 2.9
library test;
class C<T> {
void f<U extends F<T>>(U x) {}
}
typedef void F<T>(T t);
void g(C<num> c) {}
void main() {}
void test() {}