Sign in
webkit
/
WebKit
/
e83748a3d986d861713edbad6b20589c06c9b99f
/
.
/
JSTests
/
stress
/
catch-clause-should-be-under-tdz5.js
blob: 02462bc13f5132cfc29dd7c7be39c1f1146c6e1c [
file
] [
log
] [
blame
]
// This test should not crash.
var
caughtReferenceError
=
false
;
try
{
while
(
1
)
try
{
throw
{}}
catch
({
a
=({}={
__proto__
}),
__proto__
}){}
}
catch
(
e
)
{
caughtReferenceError
=
true
;
}
if
(!
caughtReferenceError
)
throw
Error
(
"Missing ReferenceError"
);