mirror of
https://github.com/github/codeql.git
synced 2025-12-19 02:13:17 +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){
|
|
}
|
|
});
|
|
});
|