blob: abe4dcfd2c4f9f11cb467fef70ba2ca2cb4798c0 [file] [log] [blame]
function test() {
try {
var {a} = null;
return false;
} catch(e) {}
try {
var {b} = undefined;
return false;
} catch(e) {}
return true;
}
if (!test())
throw new Error("Test failed");