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

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) {
}
}
}
}