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