blob: f9473d6b20aa8d8f57b17583c83ca81537ebe8e0 [file] [log] [blame]
function test() {
'use strict';
let bar = 123;
{ let bar = 456; }
return bar === 123;
}
if (!test())
throw new Error("Test failed");