fpc/tests/webtbs/tw7104.pp
peter b32b872a7e * change non-volatile rbx to volatile r11
git-svn-id: trunk@4013 -
2006-06-30 20:01:37 +00:00

24 lines
261 B
ObjectPascal

program bug7104;
{$mode objfpc}{$H+}
Uses SysUtils;
function count: integer;
begin
result := 5;
end;
var
i: Integer;
begin
for i := 0 to count-1 do begin
writeln(i);
if FileExists('asdkjasdjalsj') then;
if i>5 then halt(1);
end;
end.