aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/debug-info-namespace.cpp
blob: 89b03a608ce89f51612eda509f0fa95e7039727e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// XFAIL: cygwin,mingw
// RUN: %clang  -g -S %s -o - | FileCheck %s

// CHECK: TAG_namespace
namespace A {
  enum numbers {
    ZERO,
    ONE
  };
}

using namespace A;
numbers n;