blob: 1abf20833b2bd7b2256355c3eba91643f81f912e [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 {}