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