Hi all,
using latest git on Ubuntu 19.04 results in an error. I am trying to add
series to the list "L" stored in bundle "b" using the wildcard
operator
which does not work. See here:
<hansl>
clear
set verbose off
open denmark.gdt -q
series FOO_1 = 1
series FOO_2 = 2
# Add series to a list using the wildcard operator
list L = null
L += FOO* # WORKS
L
# Make use of bundle elements (list)
function void somefun (bundle *b)
list b.L = null
end function
bundle b = null
somefun(&b)
b.L += FOO* # ERROR: "The symbol 'FOO' is undefined"
eval b.L
</hansl>
I don't get why this shouldn't work.
Thanks,
Artur