Sign in
webkit
/
WebKit
/
6fd57f0545e2ab789319dc828ca2e5959d39c256
/
.
/
JSTests
/
es6
/
const_redefining_a_const_strict_mode.js
blob: 3fe25bf1eac4c5d6e8f9c0a8396e74d340a4fb8f [
file
] [
log
] [
blame
]
function
test
()
{
'use strict'
;
const
baz
=
1
;
try
{
Function
(
"'use strict'; const foo = 1; foo = 2;"
)();
}
catch
(
e
)
{
return
true
;
}
}
if
(!
test
())
throw
new
Error
(
"Test failed"
);