mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 00:42:06 +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.
|
|
|