﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4052	Structural parameters	Lennart Ochel	Patrick Täuber	"It seems that structural parameters get tagged as final within the frontend. However, if such a parameter depends on other parameters, then these other parameters get evaluated but not tagged as final.

This needs to be fixed to prevent someone to change those parameters after compilation.

The following example can be used as test case:
{{{#!mo
model test3
  parameter Integer p=q+1;
  parameter Integer q=2;
  Real x[p];
equation
  der(x) = fill(1.0, p);
end test3;
}}}

`q` is not marked as final."	defect	closed	high	1.11.0	Frontend		fixed		
