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

16 lines
234 B
ObjectPascal

{ %norun }
{$mode objfpc}
{$r-}
function test(l1, l2: longint): longint; inline;
begin
result:=l1+l2;
end;
{ range checking state at caller site should not influence inline evaluation }
{$r+}
begin
test(high(longint), 1);
end.