Files
Monkey-Test/WebDriverAgent/Inspector/node_modules/defs/tests/let-already-declared.js
T
2019-01-25 17:01:52 +08:00

17 lines
160 B
JavaScript

"use strict";
var x = 3;
let x = 4;
const x = 5;
function f() {
let f = 1;
function f() {
}
const y = 1;
if (1) {
var y;
}
}