blob: 9cf60472be4ca5dbe72770e8a75a0fa850d5162f [file] [log] [blame]
// @dart = 2.9
library test;
typedef T Function2<S, T>(S x);
class A<T> {
Function2<T, T> x;
A(this.x);
}
void main() {}