complit3.C   [plain text]


// { dg-options "" }

int Compound_Literals_0()
{
  static int y[] = (int []) {1, 2, 3}; // { dg-error "init" }
  static int z[] = (int [3]) {1}; // { dg-error "init" }
  return y[0]+z[0]; 
}