3 lines
92 B
C++
3 lines
92 B
C++
namespace N { template<typename T> struct A { friend int f(A); }; }
|
|
int a = f(N::A<int>());
|