blob: 7fd44353a655711017907f7732061e432a3c247d [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class A extends core::Object {
field core::int x = 2;
synthetic constructor •() void
: super core::Object::•()
;
}
static method test5() dynamic {
dynamic a1 = new self::A::•();
a1.x = "hi";
self::A a2 = new self::A::•();
a2.x = "hi";
}
static method main() dynamic {}