int test(void) {
  int i;
  i = 4;
  if (i == 2) break;
  i = i + 1;
  return 0;
}
