소스 검색

* new bug

peter 25 년 전
부모
커밋
64383892e3
2개의 변경된 파일25개의 추가작업 그리고 0개의 파일을 삭제
  1. 9 0
      tests/tbs/tbs0346a.pp
  2. 16 0
      tests/tbs/tbs0346b.pp

+ 9 - 0
tests/tbs/tbs0346a.pp

@@ -0,0 +1,9 @@
+unit tbs0346a;
+interface
+
+type
+  word = system.word;
+
+implementation
+
+end.

+ 16 - 0
tests/tbs/tbs0346b.pp

@@ -0,0 +1,16 @@
+unit tbs0346b;
+interface
+
+{ this uses system.word }
+procedure p(w:word);
+
+implementation
+uses
+  tbs0346a;
+
+{ this uses tbs0346a.word }
+procedure p(w:word);
+begin
+end;
+
+end.