blob: 47da0bb5e38907932f4eb3e57ceb25ac5ebef912 [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() 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();
}