blob: 6dc06833b7321fc6c0e41cf5a75946a5689fb28e [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;
default constructor •() void
: super core::Object::•()
;
}
abstract class B extends core::Object implements self::C {
default constructor •() void
: super core::Object::•()
;
abstract set x(core::int value) void;
}
abstract class C extends core::Object {
default constructor •() void
: super core::Object::•()
;
abstract set x(core::int value) void;
}
static method main() dynamic {}