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