mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 22:08:11 +02:00
16 lines
234 B
ObjectPascal
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.
|