blob: c45d014f18337dcaf3673da5e1e1f4fc2a915d79 [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() {}