FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20010114-1.c
blobee8295e3513e599a9b53d442033b6d6e373ee12b
1 /* Origin: PR c/1540 from Mattias Lampe <lampe@tu-harburg.de>,
2 adapted to a testcase by Joseph Myers <jsm28@cam.ac.uk>.
3 GCC 2.95.2 fails, CVS GCC of 2001-01-13 passes. */
4 extern void abort (void);
5 extern void exit (int);
7 int
8 main (void)
10 int array1[1] = { 1 };
11 int array2[2][1]= { { 1 }, { 0 } };
12 if (array1[0] != 1)
13 abort ();
14 exit (0);