mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
21 lines
210 B
C++
21 lines
210 B
C++
namespace eehandler {
|
|
|
|
void f() {
|
|
try {
|
|
try {
|
|
throw 1;
|
|
} catch (int i) {
|
|
} catch (...) {
|
|
}
|
|
} catch (int j) {
|
|
}
|
|
}
|
|
|
|
void g(bool condition) {
|
|
try {
|
|
if (condition) throw 1;
|
|
} catch (...) {
|
|
}
|
|
}
|
|
}
|