summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/error26.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/g++.dg/parse/error26.C')
-rw-r--r--gcc/testsuite/g++.dg/parse/error26.C14
1 files changed, 14 insertions, 0 deletions
diff --git a/gcc/testsuite/g++.dg/parse/error26.C b/gcc/testsuite/g++.dg/parse/error26.C
new file mode 100644
index 000000000..befaf3bb3
--- /dev/null
+++ b/gcc/testsuite/g++.dg/parse/error26.C
@@ -0,0 +1,14 @@
+// PR c++/20148
+// { dg-options "-fshow-column -ansi -pedantic-errors -Wno-long-long" }
+
+void foo()
+{
+ if (({int c[2];})) ; // { dg-error "7:ISO C.. forbids" "7" }
+ // { dg-error "20:could not convert" "20" { target *-*-* } 6 }
+}
+
+void bar()
+{
+ if (({})); // { dg-error "7:ISO C.. forbids" "7" }
+ // { dg-error "11:could not convert" "11" { target *-*-* } 12 }
+}