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