mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 22:09:45 +01: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.
|