diff options
Diffstat (limited to 'testsuite/tests/numeric/should_run/T15271.hs')
-rw-r--r-- | testsuite/tests/numeric/should_run/T15271.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/tests/numeric/should_run/T15271.hs b/testsuite/tests/numeric/should_run/T15271.hs new file mode 100644 index 0000000000..c8f2c95de5 --- /dev/null +++ b/testsuite/tests/numeric/should_run/T15271.hs @@ -0,0 +1,5 @@ +main = do + print 1e646457008 + print 1e646457009 -- T15271: This incorrectly printed 0.0 + print 1e1555550000 -- This is still infinity + print 1e1000000000 -- T15271: This incorrectly printed 0.0 |