blob: 542b63b35935eaa99036feb5a76f559d57944387 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class A extends core::Object {
field core::int x = 0;
field core::int y = null;
final field core::int z = 42;
constructor •() void
: super core::Object::•()
;
method test1() dynamic {
core::int a = this.{self::A::x};
a = "hi";
a = 3;
core::int b = this.{self::A::y};
b = "hi";
b = 4;
core::int c = this.{self::A::z};
c = "hi";
c = 4;
}
}
static method main() dynamic {}