Sign in
webkit
/
WebKit
/
4998104f692eb1d9136695fb6ec92704feed5358
/
.
/
JSTests
/
stress
/
load-hole-from-scope-into-live-var.js
blob: 2c23e03476055b54a2ffb95f4d6c6173beec4bf6 [
file
] [
log
] [
blame
]
//@ runDefault
var
result
=
eval
(`
try
{
switch
(
0
)
{
case
1
:
let x
=
eval
();
default
:
x
;
}
}
catch
(
e
)
{
}
`);
if
(
result
!==
void
0
)
throw
"Bad result: "
+
result
;