fpc/tests/webtbs/tw27173.pp
florian 29d4037a9c * make integer division instruction (div/idiv) on x86 dependent on the
resulttype of the div node set by the type checking pass, this is 
  also how the generic code generator handles it, resolves #27173

git-svn-id: trunk@29382 -
2015-01-04 13:08:57 +00:00

17 lines
145 B
ObjectPascal

program error;
{$mode Delphi}
uses sysutils;
type a = 1..MaxInt;
var b: a;
c: integer;
begin
b := 3;
c := -5 div b;
writeln(c);
end.