Hi,
I'm sorry I didn't notice this before the release (this is with 2024c):
<hansl>
function void checklist (const list L, const series b)
list all = L b
end function
function void checklist2 (const list L, series b)
# this works
# only difference is that the series b is not "const"
list all = L b
end function
open denmark
list outs = IBO IDE
# works:
checklist2(outs, IDE) # notice IDE is also in outs
# fails:
checklist(outs, IDE)
</hansl>
Not sure whether there exists an even more minimal example, but I hope
it's clear enough. Am I doing something wrong with the const qualifiers?
But I'm not trying to alter the arguments that are passed in.
I vaguely remember a similar problem some time ago (months, years?), but
no details, sorry.
thanks
sven