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

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

using namespace A;
numbers n;