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