[INFER] Testcase for bug 621655, r=bhackett

This commit is contained in:
Jan de Mooij 2010-12-30 07:47:58 -08:00
parent 0c2db22e65
commit fd3ba2dbc3

View File

@ -0,0 +1,10 @@
/* Don't assert. */
for(p in 0.3) { }
Number.prototype.foo = function() {}
var arr = [];
for(p in 1.2) {
arr.push(p);
}
assertEq(arr[0], "foo");