js/src/jit-test/tests/basic/bug631219.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:59ff605584ed
1 // don't assert or crash
2 function g(o) {
3 o.__proto__ = arguments;
4 o.length = 123;
5 }
6 function f() {
7 g(arguments);
8 }
9 f();
10

mercurial