blob: bc0e76e0477e8161cfe0cf0ea087d41ebe75b031 [file] [log] [blame]
library test;
class C<T> {
F<T> get f1 => null;
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() {}