﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3420	List.find() causes segmentation fault	Jan Silar	somebody	"When List.find is called and later fail() is called than the latter call causes segmentation fault.

To reproduce the problem add somewhere:


 _ := List.find({1,2,3,4}, findTestF);
  fail();

...

protected function findTestF
  input Integer inI;
  output Integer outI;
algorithm
  outI := match inI
    case 3
    then 9;
  end match;
end findTestF;

"	defect	new	high	Future	Unknown	trunk			
