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