diff options
author | Reid Kleckner <rnk@google.com> | 2019-02-26 02:22:22 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2019-02-26 02:22:22 +0000 |
commit | 1144084cb24ae53a120db47b1e77188247d7b583 (patch) | |
tree | e1d935e6170ce5b75a4fcbf6df3ecbd18dd20d7f /clang/test/ASTMerge/class2/test.cpp | |
parent | 2bc58bd06dc4aeb2f10fb3bf56a69583b4ebf212 (diff) | |
download | bcm5719-llvm-1144084cb24ae53a120db47b1e77188247d7b583.tar.gz bcm5719-llvm-1144084cb24ae53a120db47b1e77188247d7b583.zip |
Revert r354832 "[ASTImporter] Add support for importing ChooseExpr AST nodes."
Test does not pass on Windows
llvm-svn: 354839
Diffstat (limited to 'clang/test/ASTMerge/class2/test.cpp')
-rw-r--r-- | clang/test/ASTMerge/class2/test.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/clang/test/ASTMerge/class2/test.cpp b/clang/test/ASTMerge/class2/test.cpp deleted file mode 100644 index 6021403d722..00000000000 --- a/clang/test/ASTMerge/class2/test.cpp +++ /dev/null @@ -1,9 +0,0 @@ -// RUN: %clang_cc1 -triple %itanium_abi_triple -std=c++1z -emit-pch -o %t.1.ast %S/Inputs/class3.cpp -// RUN: %clang_cc1 -triple %itanium_abi_triple -std=c++1z -ast-merge %t.1.ast -fsyntax-only -verify %s -// expected-no-diagnostics - -class C3 { - int method_1(C2 *x) { - return x->x; - } -}; |