mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
20 lines
219 B
C++
20 lines
219 B
C++
|
|
namespace foo {
|
|
namespace bar {
|
|
void f(int i) {
|
|
int j;
|
|
try {
|
|
for (i = 0; i < 3; i++) {
|
|
int k;
|
|
}
|
|
}
|
|
catch (int e) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|