< prev index next >

test/script/basic/minuszero.js

Print this page
rev 1641 : 8144131: ArrayData.getInt implementations do not convert to int32

@@ -37,5 +37,9 @@
 obj.length = -0;
 print(obj.length);
 print(obj.length === -0);
 print(1/obj.length);
 
+var mzl = -(0x7fffffffffffffff - 0x7fffffffffffffff);
+print(mzl);
+print(mzl === -0);
+print(1/mzl);
\ No newline at end of file
< prev index next >