mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-01 22:09:28 +01:00
19 lines
157 B
ObjectPascal
19 lines
157 B
ObjectPascal
unit tbs0067;
|
|
|
|
interface
|
|
|
|
type
|
|
tlong=record
|
|
a : longint;
|
|
end;
|
|
|
|
procedure p(var t:tlong);
|
|
|
|
implementation
|
|
|
|
procedure p(var t:tlong);
|
|
begin
|
|
end;
|
|
|
|
end.
|