Hi

Hi,
Is this a bug?
//--------------------------------------
var
  i: integer;

begin
  i := 0;
  { Delphi will not generate any instructions
    for this two line of code ! }
  for i in [10 .. 5] do
    Writeln(i);

  Readln;

end.

If it's not a bug why delphi does not warn me ?

Comments