bolt/deps/llvm-18.1.8/llvm/test/DebugInfo/Inputs/accel-imported-declaration.cpp

16 lines
276 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
// Compiled on MacOS using:
// clang++ -c -std=c++2a -gdwarf-4 -O0 -o accel-imported-declaration.macho-arm64.o
namespace A {
namespace B {
namespace C {
int a = -1;
} // namespace C
} // namespace B
namespace C = B::C;
using namespace B::C;
using B::C::a;
} // namespace A