﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3041	Implicit iteration range does not always work	Henning Kiel	somebody	"model implicit_range
  Real x[3] = {1,2,3};
  Real y[3];
equation
  /* implicit range works here */
  for i loop
    y[i] = x[i];
  end for;

  /* explicit range works, of course */
  y = {x[i] for i in 1:size(x,1)};

  /* implicit range FAILS -> ""Failed to elaborate expression"" */
  y = {x[i] for i};

end implicit_range;"	defect	closed	high	1.9.4	Frontend	trunk	fixed		
