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