michael@0: // don't assert or crash michael@0: function g(o) { michael@0: o.__proto__ = arguments; michael@0: o.length = 123; michael@0: } michael@0: function f() { michael@0: g(arguments); michael@0: } michael@0: f(); michael@0: