blob: 697ff80744378d0c87e3954c071561a7837b5563 [file] [log] [blame]
library test;
class A<T> {
A(this.x);
Function2<T, T> x;
}
typedef T Function2<S, T>(S x);
void main() {}