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.  */
4extern void abort (void);
5extern void exit (int);
6
7int
8main (void)
9{
10  int array1[1] = { 1 };
11  int array2[2][1]= { { 1 }, { 0 } };
12  if (array1[0] != 1)
13    abort ();
14  exit (0);
15}
16