blob: 1dcc7e2c3ca4a3c4c8578c6adc72a084e384b967 [file] [log] [blame]
library test;
G<num> g(C<num> c) {}
class C<T> {
C(this._x);
F<T> _x;
F<T> f() => _x;
}
typedef F<T> G<T>();
typedef void F<T>(T x);
void h(int i) {}
void main() {}
void test() {}