﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
2402	Parser does not parse output list correctly!	Adrian Pop	Martin Sjölund	"{{{
model OutputList
  function f
    input Real x;
    output Real a;
    output Real b;
    output Real c;
    output Real d;
    output Real e;
  algorithm
    a := x + 1;
    b := x + 2;
    c := x + 3;
    d := x + 4;
    e := x + 5;
  end f;

  Real x;
equation
  (,,,x,) = f(0);
end OutputList;
}}}
If you do this:
{{{
loadFile(""OutputList.mo""); getErrorString();
list(OutputList); getErrorString();
}}}
you get:
{{{
adrpo@ida-liu050 ~/dev/OpenModelica/build/bin
$ ./omc OutputList.mos
true
""""
""model OutputList
  function f
    input Real x;
    output Real a;
    output Real b;
    output Real c;
    output Real d;
    output Real e;
  algorithm
    a:=x + 1;
    b:=x + 2;
    c:=x + 3;
    d:=x + 4;
    e:=x + 5;
  end f;
  Real x;
equation
  (,,,x) = f(0);
end OutputList;

""
""""
}}}
which gives you: {{{(,,,x) = f(0);}}} that is clearly wrong!"	defect	closed	blocker	1.9.0	Parser	trunk	fixed		
