blob: 49cf58619845b3ed067b257f44420d2d16ce9753 [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() core::int
return 3;
}
static method foo() dynamic {
core::String y = new self::B::•().{self::B::x};
core::int z = new self::B::•().{self::B::x};
}
static method main() dynamic {
self::foo();
}