int test(void) {
  int i;
  int j;
  int k;
  int m;
  i = 1; j = 2; k = 3; m = 4;
  if (!(i && j && k && m)) {
    i = 2;
  }
  return i;
}
