소스 검색

* System() function scope problem

peter 21 년 전
부모
커밋
0f15bfeb7c
2개의 변경된 파일20개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      tests/webtbs/tw2984.pp
  2. 13 0
      tests/webtbs/uw2984.pp

+ 7 - 0
tests/webtbs/tw2984.pp

@@ -0,0 +1,7 @@
+uses
+  uw2984;
+
+begin
+  uw2984.System('test');
+end.
+

+ 13 - 0
tests/webtbs/uw2984.pp

@@ -0,0 +1,13 @@
+unit uw2984;
+interface
+
+procedure System(const s:string);
+
+implementation
+
+procedure System(const s:string);
+begin
+  writeln(s);
+end;
+
+end.