// Minimal compiler test for C compiler.
//
// Syntax mistakes like these are common enough that any compiler MUST produce warnings
// like those in the comments if it is to be used for more than "hello, world".

void                            // warning: return type of main is not int
main (void)
{
  return;
}
