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