소스 검색

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