blob: 70240059c9c2a3c22428e9087d701d04c3aef0af [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class A extends core::Object {
synthetic constructor •() void
: super core::Object::•()
;
set x(core::int i) void {}
}
class B extends self::A {
synthetic constructor •() void
: super self::A::•()
;
set x(core::Object o) void {}
}
static method main() dynamic {
new self::B::•().{self::B::x} = "hello";
}