瀏覽代碼

* unit needed for ts010018

pierre 26 年之前
父節點
當前提交
64257a0484
共有 1 個文件被更改,包括 14 次插入0 次删除
  1. 14 0
      tests/ts/th010018.pp

+ 14 - 0
tests/ts/th010018.pp

@@ -0,0 +1,14 @@
+unit th010018;
+
+interface
+type
+  rec=object
+    i : longint;
+    nrs : (one,two,three);
+  end;
+var
+  brec : rec;
+
+implementation
+
+end.