﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1116	parameter String breaks simulations if it placed at first in a model.	jorgeecardona	jorgeecardona	"If i set a parameter String first that any other parameter in a model it breaks the simulation.

This fails:
{{{
model Test
  Real x(start = 10);
  parameter String b="""";

equation
der(x) = -x;
end Test;
}}}

{{{
>>> loadFile(""/tmp/test.mo"")
true
>>> simulate(Test)
record SimulationResult
    resultFile = ""Simulation failed.
Internal error generate_global_data failed
Internal error Generation of simulation code  failed
""
end SimulationResult;
}}}

But this works:
{{{
model Test
  Real x(start = 10);
  parameter Real a=0;
  parameter String b="""";

equation
der(x) = -x;
end Test;
}}}

{{{
>>> loadFile(""/tmp/test.mo"")
true
>>> simulate(Test)
record SimulationResult
    resultFile = ""Test_res.plt""
end SimulationResult;
}}}"	defect	closed	high			1.4.5	fixed		jorgeecardona
