// { dg-do assemble }// PRMS Id: 4864// Bug: g++ can't deal with a guiding declaration which comes before the// template.voidf(constint&,constint&);template<classT>voidf(constT&,constT&){}voidg(inta){f(a,a);// { dg-bogus "" } two identical candidates}