Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
let_is_block-scoped_strict_mode.js
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"
);