the anonymous namespace to its parent. Semantically, this means that the anonymous namespaces defined in one module are distinct from the anonymous namespaces defined in another module. llvm-svn: 147782
15 lines
121 B
C++
15 lines
121 B
C++
namespace N1 {
|
|
int& f(int);
|
|
}
|
|
|
|
namespace N2 {
|
|
int& f(int);
|
|
}
|
|
|
|
namespace N3 {
|
|
int& f(int);
|
|
}
|
|
|
|
namespace N12 { }
|
|
|