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