------- Comment #11 from zvonsully at gmail dot com 2006-06-21 23:11 ------- on g++ v. 4.1.2 it is not fixed, But here I see "Fixed" with patches from 2005! code: namespace NS{//a namespace
template<class T> class C//a template class inside a namespace { int f();//a member of C }; }//NS //here is the specialization template<> int NS:: C<int>::f(){return 0;}// !! I placed NS:: -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=13140