mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 05:11:38 +02:00
*** empty log message ***
This commit is contained in:
parent
be4097eb3f
commit
609aad0867
@ -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
11
tests/test/testu3.pp
Normal file
@ -0,0 +1,11 @@
|
||||
unit testu3;
|
||||
|
||||
interface
|
||||
|
||||
type
|
||||
tr = record
|
||||
end;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
13
tests/test/testu4.pp
Normal file
13
tests/test/testu4.pp
Normal file
@ -0,0 +1,13 @@
|
||||
unit testu4;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
testu3;
|
||||
|
||||
type
|
||||
tr = testu3.tr;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
13
tests/test/testu5.pp
Normal file
13
tests/test/testu5.pp
Normal file
@ -0,0 +1,13 @@
|
||||
unit testu5;
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
testu4;
|
||||
|
||||
type
|
||||
pr = ^tr;
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
Loading…
Reference in New Issue
Block a user