﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2103	code generation bug involving tuples and integers	Christoph Höger	Martin Sjölund	"There is a side-effect on the generation of comments when integers and tuples are used.

{{{
model Bug

  function g
    input Real x;
    output Real y=x, z=x;
  end g;

  Real x,y;
  Integer i(start=1);
  equation
  (x,y) = g(time*i);

  /* only to prevent optimization of i */
  when sample(1,1) then
    i=pre(i) + 1;
  end when;
end Bug;
}}}"	defect	closed	high	1.9.0	Code Generation	trunk	fixed		
