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