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