1 2 3 4 5 6 7 8 9 10
// don't assert or crash function g(o) { o.__proto__ = arguments; o.length = 123; } function f() { g(arguments); } f();