mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 10:39:29 +02:00
13 lines
191 B
ObjectPascal
13 lines
191 B
ObjectPascal
{ Old file: tbf0310.pp }
|
|
{ local and para dup are not detected OK 0.99.15 (FK) }
|
|
|
|
procedure p(s:string);
|
|
var
|
|
s : string;
|
|
begin
|
|
writeln(s);
|
|
end;
|
|
|
|
begin
|
|
p('test');
|
|
end. |