Browse Source

no message

florian 21 years ago
parent
commit
4cdeccdab7
1 changed files with 16 additions and 0 deletions
  1. 16 0
      tests/webtbs/tw3023.pp

+ 16 - 0
tests/webtbs/tw3023.pp

@@ -0,0 +1,16 @@
+{ Source provided for Free Pascal Bug Report 3023 }
+{ Submitted by "Michael" on  2004-03-23 }
+{ e-mail: [email protected] }
+{$mode objfpc}
+
+program testa;
+
+Var
+  A : Array of Integer;
+
+begin
+// Commented version does work.
+//  If (Length(A)=0) then
+  If Not Assigned(A) then
+    Writeln('All OK');
+end.