blob: f878cdfda09dc3ced8c2899082cbae63bf863f38 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
method f() core::int
return 0;
}
class D extends self::C {
synthetic constructor •() void
: super self::C::•()
;
method g() void {
dynamic y = super.{self::C::f};
}
}
static method main() dynamic {}