aboutsummaryrefslogtreecommitdiff
path: root/test/ASTMerge/class2/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/ASTMerge/class2/test.cpp')
-rw-r--r--test/ASTMerge/class2/test.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/ASTMerge/class2/test.cpp b/test/ASTMerge/class2/test.cpp
deleted file mode 100644
index 6021403d7229..000000000000
--- a/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;
- }
-};