blob: 74f997b31d187472add3238ccdaa1672ead4129a [file] [log] [blame]
// @dart = 2.9
import "dart:core" as core;
class A implements core.Function {
operator ==(other) => false;
}
class B implements Function {
operator ==(other) => false;
}
class Function {
core.bool operator ==(core.Object other) => false;
}
main() {}