﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2124	Arrays with multiple iterators have wrong format.	carlj <carlj@…>	Per Östlund	"The following model fails:

{{{
model Model1
  Real Z[3,5] = array(i*j for j in 1:5, i in 1:3);
end Model1;
}}}

since the array constructed will have the wrong format for the variable Z. The format will be 5x3 but should be 3x5 according to the specification (Modelica 3.3 specification, pages 115-116), which states the array construction above should be the same as

{{{
   {{ i * j for j in 1:5 } for i in 1:3};
}}}

which is 3x5.
"	defect	closed	high		Frontend		fixed		
