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