debug-info-namespace.cpp revision 4bc48877db95b2afd6207fdb54ce271169c994f9
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