https://bugs.documentfoundation.org/show_bug.cgi?id=150185

--- Comment #4 from Vladimir Sokolinskiy <[email protected]> ---
The built-in debugger in the IDE also sees no problem with the p array from the
start message.

The problem arises for arrays of structures. Same for custom types:

Type MyType 
  X As Long
End Type  

Sub TestCustomType
  Dim p(0) As MyType
  Dim h As MyType
  h.X=1
  p(0)=h
  Msgbox "h.X=" & h.X & " p(0).X=" & p(0).X 
End Sub

Result: h.X=1 p(0).X=0

-- 
You are receiving this mail because:
You are the assignee for the bug.

Reply via email to