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