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