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