-
Type:
Bug
-
Resolution: Won't Fix
-
Priority:
P3
-
None
-
Affects Version/s: 1.1
-
Component/s: core-libs
-
sparc
-
solaris_2.5
scale is incorrect, decimal point position is wrong:
==== here is the minimized test ====
class java_lang_Bignum_constructor_1 {
public static void main(String args[]) {
System.out.println(new java.lang.Bignum(Double.MIN_VALUE,500));
}
}
==== here is the output of the test ====
4900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0
==== here is the minimized test ====
class java_lang_Bignum_constructor_1 {
public static void main(String args[]) {
System.out.println(new java.lang.Bignum(Double.MIN_VALUE,500));
}
}
==== here is the output of the test ====
4900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000.0