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