- 
    
Sub-task
 - 
    Resolution: Done
 - 
    
P3: Somewhat important
 - 
    None
 
- 
        9b30795c02ac659606304f1a101279cd66af5c07
 
template<typename T>
struct Indirect { T t; };
struct Foo { int bar; };
template<typename T>
struct Temp
{
    typedef T MyT;
    typedef Indirect<MyT> indirect;
};
void func()
{
    Temp<Foo>::indirect temp;
    temp.t.bar; // bar not highlighted
}