Files
codeql/javascript/ql/test/query-tests/Declarations/RedeclaredVariable/tst2.js
2018-08-02 17:53:23 +01:00

13 lines
149 B
JavaScript

function f(x) {
function g() {
try {
} finally {
var x;
}
}
}
function h(x, y) {
if (arguments.length < 2)
[x, y] = x;
}