blob: 69264e5c8bf8fcb9a850ec90bbeb935fa3b03fb0 [file] [log] [blame]
library test;
typedef void F<T>(T x);
class C<T> {
F<T> y;
void f(T value) {}
}
void g(C<num> c) {}
void main() {}