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