Correcting unit tests that are inc/dec temporaries. This is no longer allowed

This commit is contained in:
Jonathan Turner 2009-09-06 02:50:36 +00:00
parent e9539dfee2
commit b3656c95f5
2 changed files with 4 additions and 2 deletions

View File

@ -1 +1,2 @@
print(--3)
var i = 3
print(--i)

View File

@ -1 +1,2 @@
print(++3)
var i = 3
print(++i)