blob: cbeee6c7a871d56689039072adcda6dfd285399b [file] [log] [blame]
function test() {
var o = {};
o.__proto__ = Array.prototype;
return o instanceof Array;
}
if (!test())
throw new Error("Test failed");