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