xref: /llvm-project/clang/test/CodeGenCXX/debug-info-namespace.cpp (revision fb7133249cda5c86df5aafbd1dd4b69aa2736e47)
1 // XFAIL: cygwin,mingw
2 // RUN: %clang  -g -S %s -o - | FileCheck %s
3 
4 // CHECK: TAG_namespace
5 namespace A {
6   enum numbers {
7     ZERO,
8     ONE
9   };
10 }
11 
12 using namespace A;
13 numbers n;
14