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