﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2640	Handle functions with default bindings to inputs	Martin Sjölund	Per Östlund	"{{{#!mo
function f
  input Real x;
  input Real y := 2 * x;
  input Real z := x / y;
  output Real o;
algorithm
  o := x+y+z;
end f;
}}}

{{{#!mo
f(1+3);
}}}
Should be flattened to:
{{{#!mo
f(1+3,2*(1+3),(1+3)/(2*(1+3)));
}}}"	defect	closed	high	1.9.1	Frontend	trunk	fixed		Adrian Pop Per Östlund
