blob: 861e9bc883bd6d55aecc804e73955a14e69ad53e (
plain)
1
2
3
4
5
6
7
8
9
10
|
-- demonstrates a bug in mulIntMayOflo in GHC 6.5 on 64-bit arches
-- (trac #867).
-- It thought it could represent 3049800625 * 3049800625 in an I#.
i :: Integer
i = 3049800625
main :: IO ()
main = print (i * i)
|