blob: 985da53a69999cce5b15a98c87903e438ba80cfc [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class C extends core::Object {
constructor •() void
: super core::Object::•()
;
operator ==(dynamic other) dynamic
return throw "x";
method test() dynamic {
super.{core::Object::==}(null);
}
}
static method main() dynamic {
new self::C::•().test();
}