﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1529	It should be possible to use non-fixed parameters as array indices	Martin Sjölund	Lennart Ochel	"{{{
model M
  parameter Integer p(fixed=false,min=1,max=1);
  Real r[1];
initial equation
  p = 1;
equation
  r[p] = 2.0;
end M;
}}}

{{{
[a.mo:7:3-7:13:writable] Error: Illegal subscript [p] for dimensions 1 in component <NO COMPONENT>
}}}

Also, have fun with:
{{{
model M
  parameter Integer p(fixed=false,min=1,max=1,start=1);
  Real r[1];
initial equation
  p = 15;
equation
  r[p] = 2.0;
end M;
}}}"	defect	closed	high	1.9.4	Run-time		fixed		Martin Sjölund Per Östlund
