﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4053	Structural parameters (second issue)	Lennart Ochel	Patrick Täuber	"In this example is the parameter `state` a structural parameter and get treated as such within the frontend, but it gets not tagged as final.

{{{#!mo
model test2
  parameter Boolean state = true;
  Real v;
  Real r;
equation
  if state then // code which is removed during symbolic
    der(v) = 1; // processing, if state=false
    der(r) = 2;
  else
    v = time;
    r = 2*time;
  end if;
end test2;
}}}

This issue is probably connected to #4052.
"	defect	closed	high	1.11.0	Frontend		fixed		
