// 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)
{
  for (;;);                     // The code after this infinit loop can not be reached and therefore be optimized away.
  return 0;
}
