1 2 3 4 5 6 7 8
var t = [4]; var stop; Object.freeze(t); do { stop = inIon(); t[0] = 2; assertEq(t[0], 4); } while (!stop);