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