blob: bbf939b39a0e6fb05cbd15d56549e0fc19c98a4f [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(dynamic value) void;
}
static method main() dynamic {}