// Ah, this wouldn't even compile with late evaluation of the argument svoid test_getSlashSet_earlyEvaluationOfArgument() { class X { S bla; } new X y; new X z; X x = y; var getSet = get/set bla(x); getSet.set("yo"); x = z; assertEqualsVerbose("yo", getSet!); x = y; assertEqualsVerbose("yo", getSet!); }