aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/DebugInfo/Inputs/accel-imported-declaration.cpp
blob: 76a8decbebc2136115358894f2e35b7e3a904d63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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