Displaying 1 result from an estimated 1 matches for "try_except".
2020 Apr 01
2
[RFC] [Windows SEH] Local_Unwind (Jumping out of a _finally) and -EHa (Hardware Exception Handling)
...}
      printf(" inner finally: normal return \n\r");
    }
  } finally {
    Counter += 1;
    printf(" outer finally: \n\r");
  }
}
except(Counter) {
  /* set counter = 3 */
  printf(" except handler: \n\r");
  Counter += 1;
}
printf(" after outer try_except: \n\r");
t10:;
  *   Normal execution (ex is false), normal return (lu is false): both _finallys are executed normally, but _except_handler should not be executed. Output is:
inner finally: normal path:
inner finally: normal return:
outer finally:
after outer try_except:
  *   Normal execu...