]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/init/array2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / init / array2.C
diff --git a/gcc/testsuite/g++.dg/init/array2.C b/gcc/testsuite/g++.dg/init/array2.C
deleted file mode 100644 (file)
index ca03ff3..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-// Check that the type of an array is set correctly when flat initializers
-// are used.
-
-// { dg-do compile }
-
-struct s { int a; int b; };
-struct s x[] = { 1, 2, 3, 4 };
-int y[sizeof (x) == 2 * sizeof (x[0])? 1 : -1];