fpc/tests/test/tinlrange3.pp
Jonas Maebe af97c43bdc + tests for r43436
git-svn-id: trunk@43438 -
2019-11-10 13:13:57 +00:00

16 lines
149 B
ObjectPascal

{ %fail }
{$mode objfpc}
{$q+}
function test(l1, l2: int64): int64; inline;
begin
result:=l1+l2;
end;
{$q-}
begin
test(high(int64), 1);
end.