blob: 364c1ad3ba53589a00f21987bdf34e006f36bc0e [file] [log] [blame]
class C {
bool operator ==(Object other) => true;
}
class D extends C {
bool operator ==(Object? other) => super == other;
bool method1(dynamic o) => super == o;
bool method2(Null o) => super == o;
}
class E {
bool operator ==() => true;
}
class F extends E {
bool operator ==(Object? other) => super == other;
}
main() {}
expect(expected, actual) {}