fpc/tests/webtbs/tw15304.pp
Jonas Maebe e50c05f44e * fixed inverted condition in inc/dec range/overflow case that caused
unsigned 32/64 bit values to be always explicitly typecasted to signed
    32/64 bit instead of never (mantis #15304)

git-svn-id: trunk@14379 -
2009-12-09 21:54:46 +00:00

11 lines
179 B
ObjectPascal

{$r+,q+}
var A : LongWord;
begin
A := $0FFFFFFF;
Inc(A, LongWord($F0000000));
// no runtime error if the above line is changed to:
// A := A + LongWord($F0000000);
end.