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");