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

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

using namespace A;
numbers n;
OpenPOWER on IntegriCloud