See this example:
#include <memory>
#include <complex>
void test()
{
std::shared_ptr<std::vector<std::shared_ptr<std::complex<float> > > > ptr;
for (auto p : *ptr)
{
p-> // VAX gives wrong suggestions here!
}
}
When I type the p-> above, I get a wrong popup list with suggestions. The suggestions refer to std::vector instead of std::complex.
VA_X.dll file version 10.9.2062.0 built 2015.04.07
Let me know if you need more information.