﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
1561	Non-returning MetaModelica function with list output returns 0	Per Östlund	Per Östlund	"This MetaModelica code:
{{{
package test;  
  function f 
    output list<String> outString;
  end f;

  constant list<String> s = f();
end test;
}}}
produces this output:
{{{
function test.f
  output list<String> outString;
end test.f;

class test
  constant list<String> s = 0;
end test;
}}}
I don't really know what's supposed to happen if a function doesn't return anything in MetaModelica, but assigning a list to 0 seems wrong."	defect	closed	normal				wontfix		Per Östlund Martin Sjölund
