Added a few more tests to help make sure I don't break anything

This commit is contained in:
Neil Brown 2009-02-04 13:08:11 +00:00
parent 3915afc079
commit 0cbe5de96c

View File

@ -43,6 +43,23 @@ PROC m()
x := 3
x := 4
%FAIL Identical variables deep within a PAR
PAR
PAR
x := 3
x := 4
SKIP
SKIP
%PASS Identical variables deep within a PAR, but SEQ
PAR
SEQ
x := 3
x := 4
SKIP
SKIP
%FAIL Identical variables, PAR assign
x,x := 3,4