blob: 3493bd8c4d156a1ab3b71c207630e9b179e3f91f [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class B extends core::Object {
synthetic constructor •() self::B
: super core::Object::•()
;
method f() void {}
}
class C extends self::B {
synthetic constructor •() self::C
: super self::B::•()
;
method f() void {}
}
static field dynamic x = new self::C::•().f();
static method main() dynamic {
self::x;
}