Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
477 B

  1. // utxcpt3.c - user mode seh test #3.
  2. #include <ntos.h>
  3. BOOLEAN EndTest = FALSE;
  4. main()
  5. {
  6. while (EndTest == FALSE) {
  7. try {
  8. try {
  9. DbgPrint("doing return\n");
  10. return;
  11. }
  12. finally {
  13. DbgPrint("in inner finally\n");
  14. break;
  15. }
  16. }
  17. finally {
  18. DbgPrint("in last finally\n");
  19. continue;
  20. }
  21. }
  22. }