While running in XCode's profiler, I noticed memory leaks when safearrays were used in `For Each` statements.
The following code would leak a safearray allocation:
``` For Each obj In vpDict.Keys : Debug.Print "Key" : Next ```
This following code does not leak:
``` Dim x x = vpDict.Keys
For Each obj In x : Debug.Print "Key" : Next ```