blob: 14649371689b4f97a1be7d0c38165608d3f9ca77 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class A extends core::Object {
field core::int x = 2;
constructor •() void
: super core::Object::•()
;
}
class B extends self::A {
constructor •() void
: super self::A::•()
;
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();
}