https://bugs.documentfoundation.org/show_bug.cgi?id=134692
Mike Kaganski <[email protected]> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever confirmed|0 |1
--- Comment #2 from Mike Kaganski <[email protected]> ---
I feel quite sure that it's my fix to tdf#129256 that caused the problem with
redim preserve (but I hadn't bisected actually).
sub tst
dim a(2 to 5)
b = a
redim preserve b(4 to 6)
for i = lbound(b) to ubound(b)
b(i) = i
next i
for i = lbound(a) to ubound(a)
s$ = s$ & " a(" & i & ")=" & a(i)
next i
s$ = s$ & chr(10)
for i = lbound(b) to ubound(b)
s$ = s$ & " b(" & i & ")=" & b(i)
next i
msgbox s$
end sub
--
You are receiving this mail because:
You are the assignee for the bug._______________________________________________
Libreoffice-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs