int test(void) {
  int i;
  int j;
  if (0) {
    i = j;
  } else {
    j = 99;
  }
  return i;
}
