int test(void) {
  int i;
  int j;

  if (!(i < j)) {
    i = 2;
  }
  return i;
}
