mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:38:29 +02:00
15 lines
199 B
ObjectPascal
15 lines
199 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 3294 }
|
|
{ Submitted by "marco" on 2004-09-05 }
|
|
{ e-mail: }
|
|
|
|
{$mode tp}
|
|
|
|
var i : integer;
|
|
|
|
begin
|
|
for i:=0 to 10 do
|
|
begin
|
|
i:=20;
|
|
end;
|
|
end.
|