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

--- Comment #4 from Werner Tietz <[email protected]> ---
Hallo
it seems a bad idea to use the **same** symbol for **both** the Function and
the Collection inside ;-) 


```
Option VBASupport 1
Function NotRecursive()
  Set  think_about_namespaces = New Collection
  think_about__namespaces.Add "Foo"
  NotRecursive = think_about_namespaces
End Function

Sub main()
  Dim c
  Set c = NotRecursive
  MsgBox c.Count
End Sub
```
works with|without VBASupport!

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

Reply via email to