blob: 015c2829f67f409267cb0768e16d89304353d5c8 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class A extends core::Object {
final field core::int x = 2;
synthetic constructor •() void
: super core::Object::•()
;
}
class B extends core::Object implements self::A {
synthetic constructor •() void
: super core::Object::•()
;
get x() dynamic
return 3;
}
static method foo() dynamic {
core::String y = new self::B::•().x;
core::int z = new self::B::•().x;
}
static method main() dynamic {
self::foo();
}