1 2 3 4 5 6 7 8 9 10 11 12
with({}){} x = new Int8Array(1) function f(y) { x[0] = y } f() f(3) f(7) x.buffer; f(0); assertEq(x[0], 0);