blob: 6682a1184492bccf689098b934edb839a618e326 [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::•()
;
abstract get x() core::double;
}
abstract class B extends self::A {
synthetic constructor •() void
: super self::A::•()
;
abstract set x(core::double value) void;
}
static method main() dynamic {}