llvm-for-llvmta/tools/clang/test/Modules/Inputs/deferred-lookup/b.h

7 lines
209 B
C
Raw Normal View History

2022-04-25 13:02:35 +02:00
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>()); }