Sign in
webkit
/
WebKit
/
69084d7b0eae184a8076d683d5feee69bc80ce44
/
.
/
JSTests
/
stress
/
catch-clause-should-be-under-tdz3.js
blob: fe33f3945d54b8828a8b00b9ebc7a0eb24857367 [
file
] [
log
] [
blame
]
// This test should not crash.
var
caughtReferenceError
=
false
;
try
{
try
{
throw
{};
}
catch
({
a
=
(
print
(
a
),
b
),
b
})
{
}
}
catch
(
e
)
{
caughtReferenceError
=
true
;
}
if
(!
caughtReferenceError
)
throw
Error
(
"Missing ReferenceError"
);