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