You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
209 B

namespace N { template<typename T> struct A { friend int f(A); }; }
namespace N { int f(int); }
namespace N { int f(int); }
#include "a.h"
namespace N { int f(int); }
inline int g() { return f(N::A<int>()); }