mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 10:48:30 +02:00
15 lines
190 B
ObjectPascal
15 lines
190 B
ObjectPascal
{ %fail }
|
|
|
|
var
|
|
i : integer;
|
|
begin
|
|
if i=2 then
|
|
begin
|
|
for i:=1 to 10 do
|
|
{ The next line should be forbidden }
|
|
for i:=1 to 9 do
|
|
writeln(i);
|
|
end;
|
|
end.
|
|
|