bolt/deps/llvm-18.1.8/clang/test/Modules/Inputs/deferred-lookup/b.h

7 lines
209 B
C
Raw Normal View History

2025-02-14 19:21:04 +01: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>()); }