Browse Source

no message

florian 21 years ago
parent
commit
01d7276396
1 changed files with 14 additions and 0 deletions
  1. 14 0
      tests/webtbs/tw3083.pp

+ 14 - 0
tests/webtbs/tw3083.pp

@@ -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.