mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 07:26:06 +00:00

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
11 lines
128 B
C++
11 lines
128 B
C++
// Header for PCH test cxx-namespaces.cpp
|
|
|
|
namespace N {
|
|
namespace {
|
|
int x;
|
|
}
|
|
|
|
void f();
|
|
void f(int);
|
|
}
|