Files
2018-08-02 17:53:23 +01:00

11 lines
138 B
JavaScript

// OK: `const` is block scoped in ECMAScript 2015
function f() {
{
const val = 1;
}
{
const val = 2;
}
}