aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/error26.C
blob: 1084e76d34a89d02e0b788fb4add6721bc96402c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 "17:could not convert" "17" { target *-*-* } 6 }
}

void bar()
{
  if (({})); // { dg-error "7:ISO C.. forbids" "7" }
  // { dg-error "11:could not convert" "11" { target *-*-* } 12 }
}