﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4838	CevalFunction ignores tail recursion	Martin Sjölund	Martin Sjölund	"{{{#!mo
loadString(""
function summa
  input Integer a;
  input Integer i;
  output Integer b;
  algorithm
  if i == 0 then
    b := a;
  else
    b := summa(a+1,i-1); // calls summa; ignores the assignment
  end if;
end summa;
"");getErrorString();
summa(0,4);getErrorString(); // returns 0
}}}"	defect	closed	blocker	1.13.0	Frontend		fixed		
