Sign in
webkit
/
WebKit
/
ac6f99830016c7bf481617249819af59429a05a4
/
.
/
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"
);