*** empty log message ***

This commit is contained in:
florian 2000-04-13 19:36:08 +00:00
parent be4097eb3f
commit 609aad0867
4 changed files with 40 additions and 0 deletions

View File

@ -21,3 +21,6 @@ input/output .......... inoutres.pp tests inoutres values of invalid
operations
Units ................. testu1.pp tests init. & finalization and halt
testu2.pp in finalization
testu3.pp a type redefining problem
testu4.pp
testu5.pp

11
tests/test/testu3.pp Normal file
View File

@ -0,0 +1,11 @@
unit testu3;
interface
type
tr = record
end;
implementation
end.

13
tests/test/testu4.pp Normal file
View File

@ -0,0 +1,13 @@
unit testu4;
interface
uses
testu3;
type
tr = testu3.tr;
implementation
end.

13
tests/test/testu5.pp Normal file
View File

@ -0,0 +1,13 @@
unit testu5;
interface
uses
testu4;
type
pr = ^tr;
implementation
end.