js/src/jit-test/tests/jaeger/bug621655.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:eef1ce100b4b
1 /* Don't assert. */
2 for(p in 0.3) { }
3
4 Number.prototype.foo = function() {}
5 var arr = [];
6
7 for(p in 1.2) {
8 arr.push(p);
9 }
10 assertEq(arr[0], "foo");

mercurial