llvm-project/clang/test/PCH/cxx-namespaces.h
Richard Smith 51445cd307 When setting the external visible declarations for a decl context, check
whether they replace any existing lookups in the context, rather than
accumulating a bunch of lookup results referring to the same entity.

llvm-svn: 184679
2013-06-24 01:46:41 +00:00

11 lines
128 B
C++

// Header for PCH test cxx-namespaces.cpp
namespace N {
namespace {
int x;
}
void f();
void f(int);
}