* new bug

This commit is contained in:
peter 2004-05-02 15:15:01 +00:00
parent eb4df64ffc
commit fe63da77e0

16
tests/webtbs/tw2807.pp Normal file
View File

@ -0,0 +1,16 @@
{$mode delphi}
uses
SysUtils;
var
a:array of integer;
begin
a := nil;
SetLength(a,3);
a[0] := 0;
a[1] := 1;
a[2] := 2;
WriteLn(IntToStr(a[0]));
a := nil;
end.