Code: Select all
function f(fref g(value), x)
return g(x);
endfunctionI think using this syntax:
Code: Select all
function f(fref g, x)
return g(x);
endfunctionCode: Select all
function f(fref g(value), x)
return g(x);
endfunctionCode: Select all
function f(fref g, x)
return g(x);
endfunction