mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
18 lines
185 B
C++
18 lines
185 B
C++
void f() {
|
|
try {
|
|
try {
|
|
throw 1;
|
|
} catch (int i) {
|
|
} catch (...) {
|
|
}
|
|
} catch (int j) {
|
|
}
|
|
}
|
|
|
|
void g(bool condition) {
|
|
try {
|
|
if (condition) throw 1;
|
|
} catch (...) {
|
|
}
|
|
}
|