blob: 86f1aa19c30bac431bc3903127be5ab1214835df [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
class C extends core::Object {
default 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();
}