blob: 8e2f72c350506fc835fb9e38b45090c9953b253c [file] [log] [blame]
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() {}