*** empty log message ***

This commit is contained in:
florian 2000-02-23 23:14:40 +00:00
parent bd5719a93e
commit ae1a4de6dc
2 changed files with 19 additions and 0 deletions

View File

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

18
tests/test/testlib.pp Normal file
View File

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