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