* rangecheck error when operands are widened

This commit is contained in:
peter 2003-01-05 18:35:16 +00:00
parent ed1c028250
commit edb37d1a72

13
tests/tbs/tb0447.pp Normal file
View File

@ -0,0 +1,13 @@
{$R+}
var
a : cardinal;
b : longint;
begin
a := 0;
b := -1;
if a > b then
writeln ('OK')
else
halt(1);
end.