non-extensible-array.js (94B)
1 function foo(x) { 2 Object.seal(x); 3 x[3] = 4; 4 assertEq("" + x, "1,2,3"); 5 } 6 foo([1,2,3]);