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