fpc/tests/webtbs/tw24318.pp
Jonas Maebe a2217cedd5 * evaluate the lower and upper bounds of for-loops in ISO mode using the
ISO-defined range type, instead of using the type of the iteration
    variable (mantis #24318)

git-svn-id: trunk@37934 -
2018-01-07 18:51:53 +00:00

25 lines
301 B
ObjectPascal

{$MODE ISO}
{$r+}
program range ( output );
const ttlow = 0; tthigh = 800;
type ttx = ttlow .. tthigh;
var ttop : ttx;
procedure p ( low : ttx );
var high : ttx;
begin
for high := low to ttop - 1 do
halt(1);
end;
begin
writeln(sizeof(ttop));
ttop := 0;
p( 1 );
end.