blob: 2341dd8a4cf94f4f2ef11583dd922ee3543cca09 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C extends core::Object {
field dynamic y = null;
synthetic constructor •() void
: super core::Object::•()
;
set x(dynamic value) void {}
method test() void {
this.{self::C::x} = null;
this.{self::C::x} = null;
this.{self::C::y} = null;
this.{self::C::y} = null;
}
}
static method test(self::C c, dynamic d) void {
c.x = null;
c.y = null;
d.x = null;
}
static method main() dynamic {}