summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/misc-unused-alias-decls.cpp
blob: 1bbaa2db0a6d4319ed4089c062cbed32a8bfa19b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// https://clang.llvm.org/extra/clang-tidy/checks/misc-unused-alias-decls.html

namespace n1 {
    namespace n2 {
         namespace n3 {
             int qux = 42;
         }
    }
}

namespace n1_unused = ::n1;     // WARNING
namespace n12_unused = n1::n2;  // WARNING
namespace n123 = n1::n2::n3;    // OK

int test()
{
  return n123::qux;
}