﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3836	Tuple assignment to singleton type field	Per Östlund	Martin Sjölund	"Currently it's not possible to assign to a field of a singleton type with a function returning a tuple:
{{{#!mo
uniontype UT
  record R
    Integer x;
  end R;
end UT;

function f
  input output UT ut;
algorithm
  // Doesn't work:
  (ut.x, ...) := tuple_f(...);

  // Workaround:
  (tmp_x, ...) := tuple_f(...);
  ut.x := tmp_x;
end f;
}}}"	defect	new	normal	Future	MetaModelica	v1.10.0-dev-nightly			
