blob: 238aac558fac161b8d8f67156c5e994386e87b62 [file] [log] [blame]
// @dart = 2.9
library test;
class A {
final String foo;
A(this.foo);
bool operator ==(Object other) => other is A && other . foo == this. foo;
}
main() {}