blob: 293fe4343c0a200f5e64918515a9c4c12293fc76 [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 •() self::A*
: 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 {}