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