fpc/tests/tbs/ub0060.pp
2000-11-30 22:38:14 +00:00

22 lines
299 B
ObjectPascal

{ Old file: tbs0067.pp }
{ Shows incorrect symbol resolution when using uses in implementation More info can be found in file tbs0067b.pp. }
unit ub0060;
interface
type
tlong=record
a : longint;
end;
procedure p(var t:tlong);
implementation
procedure p(var t:tlong);
begin
end;
end.