blob: 7a6ee1edf879e02d35a75ec368f3aa76487ff1ed [file] [log] [blame]
// @dart = 2.9
library test;
typedef void F<T>(T x);
class C<T> {
T x;
void set y(T value) {}
void f(T value) {}
}
void g(C<num> c) {}
void main() {}