mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
14 lines
136 B
JavaScript
14 lines
136 B
JavaScript
f();
|
|
|
|
function f() {
|
|
console.log("first declaration");
|
|
}
|
|
|
|
f();
|
|
|
|
function f() { // $ Alert
|
|
console.log("first declaration");
|
|
}
|
|
|
|
f();
|