// Red Hat bugzilla 65035// Bug: We were encoding the name of the instantiation as 'operator int'// rather than 'operator T'.// { dg-do compile }structC{template<classT>operatorT();};template<classT>C::operatorT(){return0;}templateC::operatorint();// { dg-final { scan-assembler _ZN1CcvT_IiEEv } }