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