blob: eb3e361413057da2a37e131b59f521829b3ec6fa [file] [log] [blame]
class A<T> {
void Function(T) f;
A(this.f);
foo(T x) => this.f(x);
}
main() {}