1*67e74705SXin Li namespace N { template<typename T> struct A { friend int f(A); }; } 2*67e74705SXin Li int a = f(N::A<int>()); 3