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