瀏覽代碼

no message

florian 21 年之前
父節點
當前提交
4cdeccdab7
共有 1 個文件被更改,包括 16 次插入0 次删除
  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.