From 39fcc9a984e2820e4ea0fa2ac4abd17d9f3a31df Mon Sep 17 00:00:00 2001 From: dim Date: Sun, 20 Feb 2011 13:06:31 +0000 Subject: Vendor import of clang trunk r126079: http://llvm.org/svn/llvm-project/cfe/trunk@126079 --- test/CodeGenCXX/debug-info-namespace.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 test/CodeGenCXX/debug-info-namespace.cpp (limited to 'test/CodeGenCXX/debug-info-namespace.cpp') diff --git a/test/CodeGenCXX/debug-info-namespace.cpp b/test/CodeGenCXX/debug-info-namespace.cpp new file mode 100644 index 0000000..2e0a96d --- /dev/null +++ b/test/CodeGenCXX/debug-info-namespace.cpp @@ -0,0 +1,12 @@ +// RUN: %clang -g -S %s -o - | FileCheck %s + +// CHECK: TAG_namespace +namespace A { + enum numbers { + ZERO, + ONE + }; +} + +using namespace A; +numbers n; -- cgit v1.1