blob: 49ae8d31df963a5dffb74077927e1e9566ab7d7c [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 main() dynamic {
dynamic a = new self::A::•();
self::A* b = a;
core::print(a.x);
core::print(a.x.+(2));
}