﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
5272	Inlining handles tuple inputs incorrectly	Per Östlund	Martin Sjölund	"Flattening the following model with `-g=MetaModelica`:
{{{#!mo
function f
  input tuple<Real, Real> y;
  output Real z;
algorithm
  (z, _) := y;
  annotation(__OpenModelica_EarlyInline=true);
end f;

model M
  Real x;
algorithm
  x := f((time, time));
end M;
}}}
gives
{{{#!mo
class M
  Real x;
algorithm
  x := Tuple(#(time), #(time));
end M;
}}}
I.e. the inlining replaces the call with the whole input tuple, instead of the first tuple element as expected."	defect	new	normal	Future	MetaModelica	v1.14.0-dev-nightly			
