mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 14:48:18 +02:00
26 lines
221 B
ObjectPascal
26 lines
221 B
ObjectPascal
{ %result=201 }
|
|
|
|
{$mode delphi}
|
|
{$r+}
|
|
var
|
|
Count: Word;
|
|
|
|
procedure Test;
|
|
var
|
|
I: Integer;
|
|
|
|
begin
|
|
for I := 0 to Pred(Count) do
|
|
begin
|
|
WriteLn(I);
|
|
break;
|
|
end;
|
|
end;
|
|
|
|
begin
|
|
Count := 0;
|
|
|
|
test;
|
|
end.
|
|
|