mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
11 lines
166 B
JavaScript
11 lines
166 B
JavaScript
(function(){
|
|
var v;
|
|
(function(){
|
|
if(typeof v === "undefined"){ // NOT OK
|
|
v = 42;
|
|
}
|
|
for(var v in x){
|
|
}
|
|
});
|
|
});
|