blob: 4ab5075b3ce1559558fad11c85602437a9f1d027 [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() as{TypeError} core::int;
set x(core::int value) void {}
}
class B extends core::Object {
field core::int x = 0;
synthetic constructor •() self::B
: super core::Object::•()
;
}
static method f() dynamic
return null;
static method main() dynamic {}