/* Minimal compiler test for C compiler.

 Semantic mistakes like these are common enough that any compiler should produce warnings
 like those in the comments if it is to be used for more than "hello, world".
*/

/* hidden error at file end: \ before the last line (ANSI-C 5.1.1.2); */
/* this should produce "warning: backslash-newline at end of file" */

int
main (void)
{
  return 0;
}\
