diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-02-24 21:53:36 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-02-24 21:53:36 +0000 |
commit | 5821249f8f95f7c3c059f3135baa98e7b9d9e1fc (patch) | |
tree | bb4611f7f470bda2a4748f69f3a76e8f29082590 /test/ASTMerge/namespace.cpp | |
parent | 81895a21a192af877dece28ebd88219b3faa9bb2 (diff) |
Add test for AST importing of C++ namespaces, missing from a prior commit
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97062 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/ASTMerge/namespace.cpp')
-rw-r--r-- | test/ASTMerge/namespace.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ASTMerge/namespace.cpp b/test/ASTMerge/namespace.cpp new file mode 100644 index 0000000000..6c46f0aa1d --- /dev/null +++ b/test/ASTMerge/namespace.cpp @@ -0,0 +1,6 @@ +// RUN: %clang_cc1 -emit-pch -o %t.1.ast %S/Inputs/namespace1.cpp +// RUN: %clang_cc1 -emit-pch -o %t.2.ast %S/Inputs/namespace2.cpp +// RUN: %clang_cc1 -ast-merge %t.1.ast -ast-merge %t.2.ast -fsyntax-only %s 2>&1 | FileCheck %s + +// CHECK: namespace2.cpp:16:17: error: external variable 'z' declared with incompatible types in different translation units ('double' vs. 'float') +// CHECK: namespace1.cpp:16:16: note: declared here with type 'float' |