blob: 1d2fd09facc71372f0c92f5c50736d6cfa9cf9a8 [file] [log] [blame]
function test() {
if (!({ __proto__ : [] } instanceof Array)) {
return false;
}
var a = "__proto__";
return !({ [a] : [] } instanceof Array);
}
if (!test())
throw new Error("Test failed");