mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 12:07:58 +02:00
12 lines
104 B
ObjectPascal
12 lines
104 B
ObjectPascal
{$mode macpas}
|
|
function f: longint;
|
|
begin
|
|
return 3;
|
|
end;
|
|
|
|
begin
|
|
if f() <> 3 then
|
|
halt(1);
|
|
end.
|
|
|