1
0
forked from Mirror/wren

Fix assignment test.

This commit is contained in:
Bob Nystrom
2016-10-08 10:51:19 -07:00
parent e7cabbb5e4
commit 57f34fab95

View File

@ -3,7 +3,7 @@ var a = "a"
var b = "b"
a = b = "chain"
System.print(a) // expect: chain
System.print(a) // expect: chain
System.print(b) // expect: chain
// Assignment on RHS of variable.
var c = a = "var"