blob: 7b98ac9186aac4ba18c9052a9b91563e43aa0651 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C extends core::Object {
field () core::int f = () core::int => 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::f}.call();
}
}
static method main() dynamic {}