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