mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
182 B
JavaScript
14 lines
182 B
JavaScript
function f() {
|
|
let y = false;
|
|
for (const x of [1, 2, 3]) {
|
|
if (x > 0) {
|
|
y = true;
|
|
continue;
|
|
}
|
|
return;
|
|
}
|
|
if (!y) {
|
|
console.log("Hello");
|
|
}
|
|
}
|