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