Files
clang-p2996/lldb/test/lang/cpp/nsimport/main.cpp
2015-08-19 21:23:01 +00:00

29 lines
250 B
C++

namespace N
{
int n;
}
namespace
{
int anon;
}
namespace Nested
{
namespace
{
int nested;
}
}
using namespace N;
using namespace Nested;
int main()
{
n = 1;
anon = 2;
nested = 3;
return 0; // break 0
}