summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/debug-info-namespace.cpp
blob: 27f5eae9780f217c141c15d9ed471df81d677ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang  -g -S -fverbose-asm %s -o - | FileCheck %s

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

using namespace A;
numbers n;
OpenPOWER on IntegriCloud