int test(void) {
  int i;
  int j;
  int k;
  int m;
  int n;
  i = 1; j = 2; k = 3; m = 4; n = 5;
  ? i = (j > 4 || j < 2) ? m : n;
  return 0;
}
