Files
codeql/cpp/ql/test/library-tests/controlflow/primitives/ms.cpp
2018-08-02 17:53:23 +01:00

20 lines
228 B
C++

// semmle-extractor-options: --microsoft
void ms_try_except(int j) {
int x;
__try {
x = 1;
}
__except (j) {
x = 2;
}
__try {
x = 3;
}
__finally {
x = 4;
}
}