xref: /llvm-project/llvm/test/DebugInfo/Inputs/accel-imported-declaration.cpp (revision 657672667fd16aa49897093b925c93c900286c8d)
1 // Compiled on MacOS using:
2 // clang++ -c -std=c++2a -gdwarf-4 -O0 -o accel-imported-declaration.macho-arm64.o
3 
4 namespace A {
5 namespace B {
6 namespace C {
7 int a = -1;
8 } // namespace C
9 } // namespace B
10 
11 namespace C = B::C;
12 
13 using namespace B::C;
14 using B::C::a;
15 } // namespace A
16