blob: 81dde83b0d9fd65900cd5856aee9ec2f781bbca0 [file] [log] [blame]
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() {}