no message

This commit is contained in:
florian 2004-05-20 15:41:41 +00:00
parent 6a902e9f9b
commit 01d7276396

14
tests/webtbs/tw3083.pp Normal file
View File

@ -0,0 +1,14 @@
{ Source provided for Free Pascal Bug Report 3083 }
{ Submitted by "Martin Schreiber" on 2004-05-04 }
{ e-mail: }
program project1;
{$mode delphi}{$H+}
var
ar1: array of ansistring;
begin
setlength(ar1,1);
ar1[0]:= 'abc';
ar1:= nil; //av!
end.