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