mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-10 20:42:19 +01:00
10 lines
93 B
ObjectPascal
10 lines
93 B
ObjectPascal
{ %fail }
|
|
|
|
const
|
|
c1 = high(int64)-1;
|
|
{ Overflow }
|
|
c2 = c1+2;
|
|
begin
|
|
writeln(c2);
|
|
end.
|