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