mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
7 lines
111 B
C++
7 lines
111 B
C++
void f(int i) {
|
|
for (int i = 0; i < 10; ++i) { //the loop variable hides the parameter to f()
|
|
...
|
|
}
|
|
}
|
|
|