﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4841	inline function with bindings for outputs	Vitalij Ruge	Vitalij Ruge	"following model will transform wrong if inline is active. 

{{{#!modelica
function foo
  input Real a;
  input Real b;
  input Real c;
  output Real d;
  output Real e1 = a;
protected
  Real f = a + e1;
  Real g = f + e1;
algorithm
  d := b+c + g*f;
  annotation(Inline = true);
end foo;


model foobar
  Real a,b,c,d,e;
equation
  (d, e) =  foo(a,b,c);
  a = time;
  b = 2*time;
  c = 3*time;
end foobar;
}}}

maybe because function equation `f = ...; g = ...;` depend on `e1`."	defect	closed	high	1.13.0	*unknown*		fixed		
