1 2 3 4 5 6 7 8 9 10 11 12
function f() { var x; for (var a = 0; a < 4; a++) { switch (NaN) { default: x = a; } } assertEq(x, 3); } f();