// A compiler test for C compiler with semantic errors / critical code
// which are accepted by most compilers (including gcc with option -Wall)
//


int
main (void)
{
  int a[1234567890] = { 0 };    // error: size of array a is too large
  return 0;
}
