blob: 2ac2dc30cb318f88d2b733e597eac1b7137b3cd3 [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 •() self::C*
: super core::Object::•()
;
}
class D extends self::C {
synthetic constructor •() self::D*
: super self::C::•()
;
method g() void {
core::int* y = super.{self::C::x};
}
}
static method main() dynamic {}