Latest VAX, VS6, C++, WinXP SP3, Highlight References under Cursor is enabled.
Try following code and place the cursor into the class-name:
template< class T > class CTe|mpl // Place the cursor where "|" is
{
public:
inline CTempl< T >( void )
{
}
virtual inline ~CTempl< T >( void )
{
}
} ;
Now the class name/symbol is highlighted in the declaration and the constructor, but not in the destructor. Remove the "< T >" from destructor and it works fine.