mirror of
https://github.com/github/codeql.git
synced 2026-04-07 08:04:03 +02:00
14 lines
135 B
JavaScript
14 lines
135 B
JavaScript
f();
|
|
|
|
function f() {
|
|
console.log("first declaration");
|
|
}
|
|
|
|
f();
|
|
|
|
function f() { // NOT OK
|
|
console.log("first declaration");
|
|
}
|
|
|
|
f();
|