svoid test_setGetSyntax() { class X { S name; { (get/set name).set("hello"); assertEqualsVerbose(name, "hello"); assertEqualsVerbose("hello", (get/set name)!); } } new X x; get/set name(x).set("world"); assertEqualsVerbose(x.name, "world"); assertEqualsVerbose("world", get/set name(x)!); }