Re: [fpc-devel] for cycle variable

2005-05-29 Thread Florian Klaempfl
Rimgaudas Laucius wrote: > Hi, > > > > i found that in fpc 1.9.6 assignment to "for cycle" variable is > forbidden. Such behavior is incompatible with other compilers. As ...? > Earlier > fpc versions also had only warning. What do you think about this? Well, what we think should be clear

[fpc-devel] for cycle variable

2005-05-29 Thread Rimgaudas Laucius
Hi,   i found that in fpc 1.9.6 assignment to "for cycle" variable is forbidden. Such behavior is incompatible with other compilers. Earlier fpc versions also had only warning. What do you think about this?   var  i: integer;begin  for i:= 1 to 2 do    inc(i);end. _