debug-info-namespace.cpp revision 1af67f33f32444d7b344c67e03a196cd5e8c03ea
1// RUN: %clang  -g -S %s -o - | FileCheck %s
2
3// CHECK: TAG_namespace
4namespace A {
5  enum numbers {
6    ZERO,
7    ONE
8  };
9}
10
11using namespace A;
12numbers n;
13