1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/* * Any copyright is dedicated to the Public Domain. * http://creativecommons.org/licenses/publicdomain/ */ function f(x) { delete arguments[0]; for(var i=0; i<20; i++) { arguments[0] !== undefined; } } /* Don't crash. */ f(1); reportCompare(0, 0, "ok");