Files
clang-p2996/clang/test/Modules/Inputs/deferred-lookup/b.h
2015-02-07 00:45:52 +00:00

7 lines
209 B
C++

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>()); }