Add test for order of operations

This commit is contained in:
Jason Turner 2015-07-24 11:49:23 -06:00
parent 3cae2aed1d
commit b3d2350f33

View File

@ -0,0 +1,7 @@
var s = ""
s += to_string(fun[s](){ s += "3"; 3}() % fun[s](){ s += "2"; 2}());
assert_equal(s, "321");