[SystemZ] Support builtin_{frame,return}_address() with non-zero argument (#69405)
[llvm-project.git] / llvm / test / DebugInfo / Inputs / accel-imported-declaration.cpp
blob76a8decbebc2136115358894f2e35b7e3a904d63
1 // Compiled on MacOS using:
2 // clang++ -c -std=c++2a -gdwarf-4 -O0 -o accel-imported-declaration.macho-arm64.o
4 namespace A {
5 namespace B {
6 namespace C {
7 int a = -1;
8 } // namespace C
9 } // namespace B
11 namespace C = B::C;
13 using namespace B::C;
14 using B::C::a;
15 } // namespace A