blob: d07a3c0614d49d39b92974172da0db331ca51aeb [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::•()
;
}
static method test5() dynamic {
self::A a1 = new self::A::•();
a1.x = "hi";
self::A a2 = new self::A::•();
a2.x = "hi";
}
static method main() dynamic {}