﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1215	Records as input argument to functions does not work	Per Östlund	Per Östlund	"A function that takes a record as input argument will generate invalid simulation code. Example model:
{{{
record R
  Real x;
  Real y;
end R;

function f
  input R r;
  output Real y;
end f;

model bug1215
  input R r;
  output Real y;
equation
  r.x = time;
  r.y = r.x * 2;
  y = f(r);
end bug1215;
}}}"	defect	closed	high		Simulation Code Generation	1.6.0	fixed		Per Östlund Per Östlund
