blob: 18a3b266fa43319e365fe2b15275fab66c90c46f [file] [log] [blame]
function testDivisionWithNegative1() {
for (var i = 3; i >= 0; --i)
c = i / -1;
return 1/c;
}
assertEq(testDivisionWithNegative1(), -Infinity);