]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/execute/struct-ini-4.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / execute / struct-ini-4.c
diff --git a/gcc/testsuite/gcc.c-torture/execute/struct-ini-4.c b/gcc/testsuite/gcc.c-torture/execute/struct-ini-4.c
deleted file mode 100644 (file)
index 3342439..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-struct s {
-  int a[3];
-  int c[3];
-};
-
-struct s s = {
-  c: {1, 2, 3}
-};
-
-main()
-{
-  if (s.c[0] != 1)
-    abort ();
-  exit (0);
-}