blob: 385996dc7c89dcda0a67438db6c8ffea0b8b8944 [file] [log] [blame]
// @dart = 2.9
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() {}