When two const process parameters are defined in the old syntax "const i,j" only the first one is considered to be const. Thus the following assignments yields a syntax error in the second line. int[0,5] x := i; int[0,5] y := j; There is no syntax error is one writes: "const i; const j" The link point to a small example file.
A fix has been checked into CVS.