mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 11:48:10 +02:00
19 lines
157 B
ObjectPascal
19 lines
157 B
ObjectPascal
unit bug0067;
|
|
|
|
interface
|
|
|
|
type
|
|
tlong=record
|
|
a : longint;
|
|
end;
|
|
|
|
procedure p(var t:tlong);
|
|
|
|
implementation
|
|
|
|
procedure p(var t:tlong);
|
|
begin
|
|
end;
|
|
|
|
end.
|