blob: 9239ef214728c9a8cf9f64e10faf3c17cc4af833 [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 dynamic z = 42;
synthetic constructor •() self::A
: super core::Object::•()
;
method test1() dynamic {
dynamic a = this.{self::A::x};
a = "hi";
a = 3;
dynamic b = this.{self::A::y};
b = "hi";
b = 4;
dynamic c = this.{self::A::z};
c = "hi";
c = 4;
}
}
static method main() dynamic {}