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