﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1460	Noretcall gets the name of function-calls prefixed	Martin Sjölund	Martin Sjölund	"{{{package Modelica
package Utilities
package Streams

function print
  input String str;
algorithm
  .print(str);
end print;

end Streams;
end Utilities;
end Modelica;

package P

class A
  import Modelica.Utilities.*;
algorithm
  Streams.print(String(time) + ""\n"");
end A;

class B

  A a;

end B;

end P;}}}

Gives
{{{
class P.B
algorithm
  a.Modelica.Utilities.Streams.print(String(time,0,true,6) + ""
"");
end P.B;
}}}

Note the prefixed a in the call."	defect	closed	high				fixed		Martin Sjölund
