No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / ext / complit3.C
blobc9d00a797b77cea53ed0ed4994f9c3fb56726dd4
1 // { dg-options "" }
3 int Compound_Literals_0()
5   static int y[] = (int []) {1, 2, 3}; // { dg-error "compound literal|size" }
6   static int z[] = (int [3]) {1}; // { dg-error "compound literal|size" }
7   return y[0]+z[0];