1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/basic/testBug466262.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,11 @@ 1.4 +//test no assert 1.5 +function testBug466262() { 1.6 + var e = 1; 1.7 + for (var d = 0; d < 3; ++d) { 1.8 + if (d == 2) { 1.9 + e = ""; 1.10 + } 1.11 + } 1.12 + return true; 1.13 +} 1.14 +assertEq(testBug466262(), true);