mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-10 03:41:39 +01: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.
|
|
|