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