diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute/struct-ini-4.c')
-rwxr-xr-x | gcc/testsuite/gcc.c-torture/execute/struct-ini-4.c | 15 |
1 files changed, 0 insertions, 15 deletions
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 100755 index 3342439..0000000 --- a/gcc/testsuite/gcc.c-torture/execute/struct-ini-4.c +++ /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); -} |