blob: 9399bce7fb2f3713b95ea075fe72560716973fb9 [file] [log] [blame]
function test() {
try {
eval("({ __proto__ : [], __proto__: {} })");
}
catch(e) {
return true;
}
}
if (!test())
throw new Error("Test failed");