Browse Source

*** empty log message ***

florian 25 years ago
parent
commit
ae1a4de6dc
2 changed files with 19 additions and 0 deletions
  1. 1 0
      tests/test/readme.txt
  2. 18 0
      tests/test/testlib.pp

+ 1 - 0
tests/test/readme.txt

@@ -11,3 +11,4 @@ Classes ............... testdom.pp
 Exceptions ............ testexc.pp
 Exceptions ............ testexc.pp
                         testexc2.pp
                         testexc2.pp
                         testexc3.pp
                         testexc3.pp
+Libraries ............. testlib.pp     a very primitive test

+ 18 - 0
tests/test/testlib.pp

@@ -0,0 +1,18 @@
+library bug;
+
+const
+   publicname='TestName';
+   publicindex = 1234;
+
+procedure Test;export;
+
+ begin
+ end;
+
+exports
+  Test name publicname;
+exports
+  Test index publicindex;
+
+begin
+end.