fpc/tests/tbs0067b.pp
1998-12-02 13:05:01 +00:00

28 lines
377 B
ObjectPascal

unit tbs0067b;
interface
type
tlong=record
a : longint;
end;
procedure p(var l:tlong);
implementation
uses tbs0067;
{ 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
tbs0067.p(tbs0067.tlong(l));
end;
end.