blob: 6a36b478a672d39602c64a505abd49bc3aff82b0 [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 •() self::A*
: super core::Object::•()
;
}
class B extends core::Object implements self::A {
synthetic constructor •() self::B*
: super core::Object::•()
;
get x() core::int*
return 3;
}
static method foo() dynamic {
core::String* y = new self::B::•().x;
core::int* z = new self::B::•().x;
}
static method main() dynamic {}