[PATCH] D50733: [ASTImporter] Add test for ArrayInitLoopExpr
Raphael Isemann via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 14 13:47:33 PDT 2018
teemperor created this revision.
Herald added a subscriber: martong.
Herald added a reviewer: a.sidorin.
Repository:
rC Clang
https://reviews.llvm.org/D50733
Files:
test/Import/array-init-loop-expr/Inputs/S.cpp
test/Import/array-init-loop-expr/test.cpp
Index: test/Import/array-init-loop-expr/test.cpp
===================================================================
--- /dev/null
+++ test/Import/array-init-loop-expr/test.cpp
@@ -0,0 +1,11 @@
+// RUN: clang-import-test -dump-ast -import %S/Inputs/S.cpp -expression %s | FileCheck %s
+// CHECK: CXXCtorInitializer
+// CHECK-NEXT: ArrayInitLoopExpr
+// CHECK-SAME: 'int [10]'
+
+// CHECK: ArrayInitIndexExpr
+
+void expr() {
+ S s;
+ S copy = s;
+}
Index: test/Import/array-init-loop-expr/Inputs/S.cpp
===================================================================
--- /dev/null
+++ test/Import/array-init-loop-expr/Inputs/S.cpp
@@ -0,0 +1,3 @@
+class S {
+ int a[10];
+};
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D50733.160682.patch
Type: text/x-patch
Size: 681 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180814/bb14edd4/attachment.bin>
More information about the cfe-commits
mailing list