summaryrefslogtreecommitdiff
path: root/testsuite/tests/numeric/should_run/T11702.hs
blob: 0aeb77d340e7ceeac5d2f482e66611e29db378e7 (plain)
1
2
3
4
5
6
7
8
9
module Main where

testfn :: Word -> IO ()
testfn wseq = do
  print $ wseq `mod` 1

main = do
  testfn 5
  print $ (5 :: Word) `mod` 1