1 2 3 4 5
// Assignment on RHS of variable. var a = "before"; var c = a = "var"; print a; // expect: var print c; // expect: var