#include <windows.h>
#include "seh.h"
Go to the source code of this file.
◆ main()
Definition at line 10 of file seh0043.c.
10 {
13
15
16 for (Index1 = 0; Index1 < 10; Index1 += 1) {
17 try {
18 try {
19 if ((Index1 & 0x1) == 1) {
20
22 }
23 }
24 finally {
25
27 }
29
31 }
32 finally {
33
35
36#if defined(_MSC_VER) && !defined(__clang__)
37 break;
38#endif
39 }
41#ifndef _MSC_VER
42 break;
43#endif
44
46 }
47
50 return -1;
51 }
52
53 return 0;
54}
static LARGE_INTEGER Counter
◆ test
char test[] = "SEH0043.c" |