- 
    
Bug
 - 
    Resolution: Done
 - 
    
P2: Important
 - 
    Qt Creator 2.7.0
 - 
    None
 
- 
        9c2a352027711519fb7dcc579f520717cd7ed115
 
struct Foo { int foo; };
template<class T>
struct Outer
{
  struct Nested
  {
    T *operator->() { return 0; }
  };
};
void bug()
{
  Outer<Foo>::Nested nested;
  nested->foo; // Not highlighted
}
I thought it was covered in the autotests!