diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-05-30 06:31:56 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-05-30 06:31:56 +0000 |
commit | 8419fa3af97208eb00f0cd6c62354ce4ff986677 (patch) | |
tree | f88ac48fbd0080cb615e6c7dbed6224d79d4aadc /test/Coverage/ast-printing.cpp | |
parent | 6620a628b0a02c78741b8f31790d4c1186aa4038 (diff) |
Printing for using directives, e.g.,
using namespace std::debug;
Extended UsingDirectiveDecl to store the nested-name-specifier that
precedes the nominated namespace.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72614 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Coverage/ast-printing.cpp')
-rw-r--r-- | test/Coverage/ast-printing.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/Coverage/ast-printing.cpp b/test/Coverage/ast-printing.cpp new file mode 100644 index 0000000000..10d01c7437 --- /dev/null +++ b/test/Coverage/ast-printing.cpp @@ -0,0 +1,6 @@ +// RUN: clang-cc --fsyntax-only %s && +// RUN: clang-cc --ast-print %s && +// RUN: clang-cc --ast-dump %s +// FIXME: clang-cc --ast-print-xml -o %t %s + +#include "cxx-language-features.inc" |