Added a couple of tests to ensure replication is compared properly with sibling plain PARs

This commit is contained in:
Neil Brown 2008-01-25 12:30:48 +00:00
parent 330405f983
commit dc9e01933b

View File

@ -92,4 +92,14 @@ PROC m()
a[x REM y] := 3
a[y] := 4
%FAIL Overlap with items in nested replication
a[0] := 3
PAR i = 0 FOR 6
a[i] := 4
%PASS Near-overlap with items in nested replication
a[0] := 3
PAR i = 1 FOR 6
a[i] := 4
%