Files
clang-p2996/clang/test/CodeGenCXX/debug-info-namespace.cpp
Rafael Espindola 5275559c2e Update tests to not search of as.
llvm-svn: 117711
2010-10-29 21:18:11 +00:00

13 lines
157 B
C++

// RUN: %clang -g -S %s -o - | FileCheck %s
// CHECK: TAG_namespace
namespace A {
enum numbers {
ZERO,
ONE
};
}
using namespace A;
numbers n;