blob: 4ba0fda18f255ce8fb2ce3ac5149ce93af485634 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class A extends core::Object implements self::B {
field dynamic x;
constructor •() void
;
}
abstract class B extends core::Object implements self::C {
constructor •() void
;
abstract set x(dynamic value) void;
}
abstract class C extends core::Object {
constructor •() void
;
abstract set x(core::int value) void;
}
static method main() dynamic
;