Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / ext / complit3.C
blob1783a08bdc7988dbce0d8dce5d8a0ce7c803cf49
1 // { dg-options "" }
3 int Compound_Literals_0()
5   static int y[] = (int []) {1, 2, 3}; // { dg-error "compound literal" }
6   static int z[] = (int [3]) {1}; // { dg-error "compound literal" }
7   return y[0]+z[0];