1084e76d34a89d02e0b788fb4add6721bc96402c
[platform/upstream/linaro-gcc.git] / gcc / testsuite / g++.dg / parse / error26.C
1 // PR c++/20148
2 // { dg-options "-fshow-column -ansi -pedantic-errors -Wno-long-long" }
3
4 void foo()
5 {
6   if (({int c[2];})) ; // { dg-error "7:ISO C.. forbids" "7" }
7   // { dg-error "17:could not convert" "17" { target *-*-* } 6 }
8 }
9
10 void bar()
11 {
12   if (({})); // { dg-error "7:ISO C.. forbids" "7" }
13   // { dg-error "11:could not convert" "11" { target *-*-* } 12 }
14 }