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