// 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".

int
main (int argc, char **argv)
{
  char o[3];

  o[0] = argc;

  if (o[0] > 256)               //warning: comparison is always false due to limited range of data type
    return 0;
  return 1;
}
