mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 03:19:30 +02:00
22 lines
299 B
ObjectPascal
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.
|