Sign in
webkit
/
WebKit
/
2e2cb00ac8a118644a070f63a7b5ac6a2db0e0aa
/
.
/
JSTests
/
es6
/
let_basic_support_strict_mode.js
blob: f4ba80e2582def21c34198aa433fb08216e9212d [
file
] [
log
] [
blame
]
function
test
()
{
'use strict'
;
let foo
=
123
;
return
(
foo
===
123
);
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);