/* Minimal compiler test for C compiler.
*/

/* the next line causes nothing in ANSI-/ISO-C */
#

int
main (void)
{
  int i = 1, I = i;             // correct because ANSI-/ISO-C is case-sensitiv

  return I + i;
}
