blob: d6b5ee4ca0e544130c352a3aa701e19a94cac59d [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 && other.foo == this.foo;
}
main() {}