fpc/tests/webtbf/tw14248.pp
2009-08-06 19:06:23 +00:00

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.