blob: 3ae2bbb3614d4e3fdbfda524f4569b1f77b5681f [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
abstract class A extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
static get x() core::int
return 0;
}
class B extends self::A {
static field dynamic x = self::f();
synthetic constructor •() void
: super self::A::•()
;
}
class C extends self::A {
static field dynamic x = null;
synthetic constructor •() void
: super self::A::•()
;
}
static method f() dynamic
return null;
static method main() dynamic {}