blob: 69eff1f1ddecc40eefcdbd25c062a7199be1d9d2 [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() dynamic
return self::f();
}
abstract class B extends core::Object implements self::C {
synthetic constructor •() self::B
: super core::Object::•()
;
abstract get x() dynamic;
}
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 {}