Changes between Initial Version and Version 1 of Ticket #25265


Ignore:
Timestamp:
Jun 15, 2010, 2:36:36 PM (14 years ago)
Author:
mf2k (Frank Schima)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25265

    • Property Owner changed from macports-tickets@… to gwright@…
  • Ticket #25265 – Description

    initial v1  
    33Example:
    44
     5{{{
    56$ ghci
    67GHCi, version 6.10.4: http://www.haskell.org/ghc/  :? for help
     
    1213Prelude> -0.5
    1314-Segmentation fault
     15}}}
    1416
    1517The seg fault does happen after the sign is displayed.
     
    1719A file compiled by ghc does not display the same behavior. Given a file test.hs:
    1820
     21{{{
    1922main = putStr $ show (-0.5)
     23}}}
    2024
    2125And compiling with ghc --make test, the result will run normally.