mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
15 lines
173 B
ObjectPascal
15 lines
173 B
ObjectPascal
{ %fail }
|
|
program Project1;
|
|
{$mode objfpc}{$H+}
|
|
|
|
function Foo(a: Integer): Integer;
|
|
begin
|
|
dec(a);
|
|
if a < 0 then exit;
|
|
Result := Result(a);
|
|
end;
|
|
|
|
begin
|
|
Foo(10);
|
|
end.
|