blob: 4b35f0e52a537afa30f6a4f637db2c2f9d0148bb [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;
synthetic constructor •() self::A
: super core::Object::•()
;
}
abstract class B extends core::Object implements self::C {
synthetic constructor •() self::B
: super core::Object::•()
;
abstract get x() core::int;
}
abstract class C extends core::Object {
synthetic constructor •() self::C
: super core::Object::•()
;
abstract get x() core::int;
}
static method main() dynamic {}