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