summaryrefslogtreecommitdiffstats
path: root/test/ASTMerge/init-ctors/test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/ASTMerge/init-ctors/test.cpp')
-rw-r--r--test/ASTMerge/init-ctors/test.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/ASTMerge/init-ctors/test.cpp b/test/ASTMerge/init-ctors/test.cpp
deleted file mode 100644
index 5f0ba4decd..0000000000
--- a/test/ASTMerge/init-ctors/test.cpp
+++ /dev/null
@@ -1,10 +0,0 @@
-// RUN: %clang_cc1 -triple %itanium_abi_triple -std=c++1z -emit-pch -o %t.1.ast %S/Inputs/init-ctors-classes.cpp
-// RUN: %clang_cc1 -triple %itanium_abi_triple -std=c++1z -ast-merge %t.1.ast -fsyntax-only -verify %s
-// expected-no-diagnostics
-
-class B {
- int method_1() {
- A a(0);
- return a.x;
- }
-};