mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 07:09:29 +02:00
14 lines
97 B
ObjectPascal
14 lines
97 B
ObjectPascal
function f: longint;
|
|
begin
|
|
f := 1;
|
|
end;
|
|
|
|
procedure t(const c);
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
t(f);
|
|
end.
|
|
|