blob: 763e94f7deb6ac362a7fdf85c06eb9ad4bcdcd15 [file] [log] [blame]
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() {}