blob: 409a001a4c4653bb0aaa208021a5f5a581f2421b [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class I1 extends core::Object {
final field dynamic x = self::y;
synthetic constructor •() void
: super core::Object::•()
;
}
abstract class I2 extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
abstract get x() core::num;
}
class C extends core::Object implements self::I1, self::I2 {
synthetic constructor •() void
: super core::Object::•()
;
get x() core::int
return 0;
}
static field dynamic y = new self::C::•().x;
static method main() dynamic {}