I just got fpc from svn trunk (http://svn.freepascal.org/svn/fpc/trunk/)
and tested. Before I submit to Mantis, can you tell me if I made a mistake
here?
program hello;
{$mode delphi}
procedure Test;
var
Data: array of Integer = [0, 15, 24];
I: Integer;
begin
WriteLn('Testing new array features');
for I in Data do
WriteLn(Data[I]);
end;
begin
Test;
end.
Outputs:
Testing new array features
0
0
-2235258
_______________________________________________
fpc-pascal maillist - [email protected]
http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal