diff options
Diffstat (limited to 'tests/float/int_big_float.py')
-rw-r--r-- | tests/float/int_big_float.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/float/int_big_float.py b/tests/float/int_big_float.py index a5fb2700f8..5b8aaa8782 100644 --- a/tests/float/int_big_float.py +++ b/tests/float/int_big_float.py @@ -2,6 +2,9 @@ i = 1 << 65 +# convert bignum to float on rhs +print("%.5g" % (2.0 * i)) + # this should convert to float print("%.5g" % (i / 5)) |