Sign in
webkit
/
WebKit
/
fff5469af9e21121a01bc52b64d66a2e93b51665
/
.
/
JSTests
/
es6
/
let_basic_support.js
blob: b95ed901264f0149486e2c3ebdd42fa2aaa26d50 [
file
] [
log
] [
blame
]
function
test
()
{
let foo
=
123
;
return
(
foo
===
123
);
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);