﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1239	No error message when assigning non-tuple output from a function to a tuple	Per Östlund	Per Östlund	"The following model is invalid since the output of the function is not a tuple, but no error message is printed.

{{{
model test
   Real p1[2,2]={{10000,0},{0,10000}};
   Real p2[2,2]={{10,0},{0,10}};
   Real r1[2,2];
   Real r2[2,2];
equation
   (r1,r2) = myCal(p1,p2);
end test;

function myCal
  input  Real A[2,2];
  output Real  B[2,2];
  parameter Real C[2,2]={{5.00,2.00},{3.00,5.00}};
algorithm
  B:=C*A;
end myCal;
}}}"	defect	closed	normal		Instantiation		fixed		Per Östlund
