binutils-gdb/gdb/testsuite/gdb.cp/nsimport.cc

21 lines
161 B
C++

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