mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
18 lines
198 B
ObjectPascal
18 lines
198 B
ObjectPascal
unit tw29859;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
uses
|
|
uw29859a, uw29859b;
|
|
|
|
type
|
|
TMyIntegerRecord = uw29859a.TMyRecord<Integer>;
|
|
TMyBooleanRecord = uw29859b.TMyRecord<Boolean>;
|
|
|
|
implementation
|
|
|
|
end.
|
|
|