The compiler error comes from the VAX suggestion menu
i = o.operator typename t_IntPtr() ; // Wrong (the typename keyword issue is another problem I posted a few days ago)
i = o.operator int*() ; // Right
After removing "typename" from the cast operator declaration and waiting a few seconds the "right mouse button->Refactor VAX->Document Method" menu entry is available, but you have to point to the "operator" keyword not the cast-type (not very intuitive, isn't it ).
oper<place cursor somewhere here>ator t_IntPtr( void ) const throw()
{
return new int() ;
}