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