blob: 116a8dacedffef817213db5f5b6e89d91cb525b5 [file] [log] [blame]
// @dart = 2.9
class A<T> {
void Function(T) f;
A(this.f);
foo(T x) => this.f(x);
}
main() {}