Added a couple more usage check tests

This commit is contained in:
Neil Brown 2008-02-01 14:50:25 +00:00
parent 1d9d47312a
commit 1c480ce8d9

View File

@ -112,4 +112,14 @@ PROC m()
PAR i = 1 FOR 6
a[i] := 4
%FAIL Overlap with replicator start
x := 3
PAR i = x FOR 6
a[i] := 4
%FAIL Overlap with replicator count
x := 3
PAR i = 1 FOR x
a[i] := 4
%