mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 20:47:53 +02:00
20 lines
312 B
ObjectPascal
20 lines
312 B
ObjectPascal
{ Old file: tbs0007.pp }
|
|
{ tests the infinity loop when using byte counter OK 0.9.2 }
|
|
|
|
uses
|
|
erroru;
|
|
|
|
var
|
|
count : byte;
|
|
test : longint;
|
|
begin
|
|
test:=0;
|
|
for count:=1 to 127 do
|
|
begin
|
|
inc(test);
|
|
writeln(count,'. loop');
|
|
if test>127 then
|
|
Error;
|
|
end;
|
|
end.
|