* arithmetic overflow checking at compile time

This commit is contained in:
peter 2005-01-25 15:41:51 +00:00
parent 186a03feb1
commit ec433f758a
2 changed files with 20 additions and 0 deletions

10
tests/tbf/tb0171.pp Normal file
View File

@ -0,0 +1,10 @@
{ %fail }
const
c1 = high(int64)-1;
{ Overflow }
c2 = c1+2;
begin
writeln(c2);
end.

10
tests/tbf/tb0172.pp Normal file
View File

@ -0,0 +1,10 @@
{ %fail }
const
c1 = high(int64)-1;
{ Overflow }
c2 = c1*2;
begin
writeln(c2);
end.