blob: 503a2af62861b879c500e59b66484649d02f6279 [file] [log] [blame]
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() {}