blob: 05567136c347ec5429c316ae10f8970a1a1a721d [file] [log] [blame]
// @dart = 2.9
library test;
class NullEquality {
@override
Null operator ==(Object other) => null;
}
class SubNullEquality extends NullEquality {
void test() {}
}
main() {}
test() {}