1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/jaeger/bug621655.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,10 @@ 1.4 +/* Don't assert. */ 1.5 +for(p in 0.3) { } 1.6 + 1.7 +Number.prototype.foo = function() {} 1.8 +var arr = []; 1.9 + 1.10 +for(p in 1.2) { 1.11 + arr.push(p); 1.12 +} 1.13 +assertEq(arr[0], "foo");