mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 22:28:01 +02:00
28 lines
377 B
ObjectPascal
28 lines
377 B
ObjectPascal
unit bug0067b;
|
|
|
|
interface
|
|
|
|
|
|
type
|
|
tlong=record
|
|
a : longint;
|
|
end;
|
|
|
|
procedure p(var l:tlong);
|
|
|
|
implementation
|
|
|
|
uses bug0067;
|
|
|
|
{ the tlong parameter is taken from unit bug0067,
|
|
and not from the interface part of this unit.
|
|
setting the uses clause in the interface part
|
|
removes the problem }
|
|
|
|
procedure p(var l:tlong);
|
|
begin
|
|
bug0067.p(bug0067.tlong(l));
|
|
end;
|
|
|
|
end.
|