summaryrefslogtreecommitdiffstats
path: root/clang/test/CXX/stmt.stmt/stmt.dcl/p3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/CXX/stmt.stmt/stmt.dcl/p3.cpp')
-rw-r--r--clang/test/CXX/stmt.stmt/stmt.dcl/p3.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/clang/test/CXX/stmt.stmt/stmt.dcl/p3.cpp b/clang/test/CXX/stmt.stmt/stmt.dcl/p3.cpp
new file mode 100644
index 00000000000..2cf745e4506
--- /dev/null
+++ b/clang/test/CXX/stmt.stmt/stmt.dcl/p3.cpp
@@ -0,0 +1,26 @@
+// RUN: %clang_cc1 -fsyntax-only -verify %s
+// RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify %s
+
+// PR10034
+struct X {};
+
+void exx(X) {}
+
+int main(int argc, char **argv)
+{
+ if (argc > 3)
+ goto end;
+
+ X x;
+ X xs[16];
+ exx(x);
+
+ end:
+ if (argc > 1) {
+ for (int i = 0; i < argc; ++i)
+ {
+
+ }
+ }
+ return 0;
+}
OpenPOWER on IntegriCloud