I just found out that . conversion is not working for STL vectors of pointers. I don't know if it was doing this in previous build or not. I'm using build 1850.
class foo { void bar(); }
vector<foo*> x;
x[0]. // will autocomplete with .bar() instead of ->bar()