// Minimal compiler test for C compiler.
//
// This Test produces NO error/warning with an ANSI-C compiler (see also C-FAQs).


int
main (void)
{
  int a[12] = { 0 };

  return 9[a];                  // a[9]=9[a] in ANSI-C: http://www.eskimo.com/~scs/C-faq/q6.11.html
}
