blob: b94fc413cd71caa39eac243c27644d337f073d72 [file] [log] [blame]
library test;
class C<T> {
F<T> get f1 => throw '';
List<F<T>> get f2 {}
}
typedef void F<T>(T x);
void g1(C<num>? c) {}
void g2(C<num>? c) {}
void g3(C<num>? c) {}
void main() {}