blob: ee81a014bd19b4ad0fec0cf30e05f8481b8aca86 [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 {
core::int x = super.{self::C::f}();
}
}
static method main() dynamic {}