Sign in
webkit
/
WebKit
/
8c551616acce2c42251182c7abaffe8c5bfc0fe5
/
.
/
JSTests
/
es6
/
let_for-loop_statement_scope_strict_mode.js
blob: 139b80052312235cabd4867a7e0e58f1301c868f [
file
] [
log
] [
blame
]
function
test
()
{
'use strict'
;
let baz
=
1
;
for
(
let baz
=
0
;
false
;
false
)
{}
return
baz
===
1
;
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);