summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_fail/tcfail168.stderr
blob: 4ec71aaa1d4e656b74079aeadd661a189498134f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

tcfail168.hs:7:11: error:
    • Couldn't match expected type ‘IO a0’
                  with actual type ‘Char -> IO ()’
    • Probable cause: ‘putChar’ is applied to too few arguments
      In a stmt of a 'do' block: putChar
      In the expression:
        do putChar
           putChar 'a'
           putChar 'a'
           putChar 'a'
           ....
      In an equation for ‘foo’:
          foo
            = do putChar
                 putChar 'a'
                 putChar 'a'
                 ....