mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-30 17:53:42 +02:00
14 lines
155 B
ObjectPascal
14 lines
155 B
ObjectPascal
{ %OPT=-Sew }
|
|
{ this should generate no warning }
|
|
|
|
{$mode tp}
|
|
|
|
Program test;
|
|
|
|
var x,y:integer;
|
|
|
|
begin
|
|
y:=5;
|
|
for x:=0 to 10 do if x<y then writeln(x);
|
|
end.
|