Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/gdb/testsuite/gdb.cp/nsimport.cc
2023-03-06 14:48:14 +01:00

20 lines
182 B
C++

namespace A {
int x = 11;
namespace{
int xx = 22;
}
}
using namespace A;
namespace{
int xxx = 33;
};
int main()
{
(void) x;
(void) xx;
(void) xxx;
return 0;
}