blob: b39e8c59e2f992935fa6a5ae165e03d3557e59d2 [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 void x = new self::C::•().{self::C::f}();
static method main() dynamic {
self::x;
}