﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3890	Code generation for function pointers treat underscores wrong	Per Östlund	Lennart Ochel	"The following script fails because the generated code doesn't compile (`use of undeclared identifier '_pf__with__underscores'`). Removing the underscores from the function pointer works.
{{{#!mo
loadString(""
partial function pf
  output Real y;
end pf;

function f
  output Real y = 1.0;
end f;

function test
  input Integer n;
  output Real x;
protected
  pf pf_with_underscores = f;
algorithm
  x := pf_with_underscores();
end test;
"");

test(1);
getErrorString();
"");

test(1);
getErrorString();
}}}"	defect	new	normal	Future	Code Generation	v1.10.0-dev-nightly			
