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