浏览代码

* bugfix 2187 (already executes correctly, but crashed in 1.0.6)

carl 23 年之前
父节点
当前提交
2f60fd3818
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. 13 0
      tests/webtbs/tw2187.pp

+ 13 - 0
tests/webtbs/tw2187.pp

@@ -0,0 +1,13 @@
+{ Source provided for Free Pascal Bug Report 2187 }
+{ Submitted by "Artur Kornilowicz" on  2002-10-18 }
+{ e-mail: [email protected] }
+{$mode delphi}
+type x = record
+            s : string;
+            a : ^byte;
+         end; 
+
+var a: array [1..2] of x;
+
+begin
+end.