8 lines
80 B
C++
8 lines
80 B
C++
namespace XX {
|
|
namespace YY {
|
|
int x;
|
|
};
|
|
}; // namespace XX
|
|
|
|
int y = XX::YY::x;
|