blob: 7133d76e720185a84011d240f89576d4d5c48caa [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class A extends core::Object implements self::B {
constructor •() void
: super core::Object::•()
;
get x() core::int
return self::f();
set x(core::int value) void {}
}
class B extends core::Object {
field core::int x = 0;
constructor •() void
: super core::Object::•()
;
}
static method f() dynamic
return null;
static method main() dynamic {}