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