blob: 4a214befae64487a7a872884a81cbd6403c8417e [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class A extends core::Object implements self::B {
constructor •() void
: super core::Object::•()
;
get x() dynamic
return self::f();
}
abstract class B extends core::Object implements self::C {
constructor •() void
: super core::Object::•()
;
abstract get x() dynamic;
}
abstract class C extends core::Object {
constructor •() void
: super core::Object::•()
;
abstract get x() core::int;
}
static method f() dynamic
return null;
static method main() dynamic {}