Ticket #956 (closed feature request: fixed)

Opened 7 years ago

Last modified 5 months ago

improving error messages #1

Reported by: Bulat Ziganshin <Bulat.Ziganshin@…> Owned by: simonpj
Priority: normal Milestone: _|_
Component: Compiler Version: 6.6
Keywords: Cc: merehap@…
Operating System: Unknown/Multiple Architecture: Unknown/Multiple
Type of failure: None/Unknown Difficulty: Unknown
Test Case: Blocked By:
Blocking: Related Tickets:

Description

the following program

main = do putChar 'a'
          putChar

makes this error message::

    Couldn't match expected type `IO' against inferred type `(->) Char'
    Probable cause: `putChar' is applied to too few arguments
    In the expression: putChar

while the 'probable cause' is very helpful, the error message by itself is hard to understand for novices. i propose in these cases to work against known value types. in this case, we know that 'putChar' has type 'Char -> IO ()' and GHC may report smth like this:

'putChar': expression of type 'Char -> IO ()' used in context that
requires expression of 'IO ()' type
Probably, you've omitted parameter of type 'Char' to this expression

comparing this with existing message shows that may be improved:

1) for me, it's still hard to understand what is "expected" and "inferred" means. i guess that for true beginners it's even harder. i prefer to see something more English and less Mathematic - it will be very helpful

2) instead of obscure 'IO' and `(->) Char' types, i strongly prefer to see more pragmatic 'IO ()' and 'Char -> IO ()' ones

3) 'Probable cause' may be more pleasant by telling position and type of skipped argument(s)

my second example is almost the same :)

main = do putChar
          putChar 'a'

in this case error message is even worser:

    Couldn't match expected type `(->) Char' against inferred type `IO'
    Probable cause: `putChar' is applied to too many arguments
    In the expression: putChar 'a'

afaiu, here GHC thought that putChar should have 'IO ()' type. or, it may think that operations in this monad has type 'Char -> IO ()'. anyway, it will be great if GHC will know that operations in monad usually has type 'IO a' or 'm a' and try to use this heuristic when dealing with such errors (different types of statements in 'do' block)

Change History

Changed 6 years ago by igloo

  • priority changed from normal to low
  • milestone set to 6.6.1

Changed 6 years ago by simonmar

  • owner set to simonpj
  • priority changed from low to normal
  • milestone changed from 6.6.1 to 6.8

Changed 6 years ago by simonpj

  • milestone changed from 6.8 branch to _|_

See also #451

Changed 5 years ago by simonmar

  • architecture changed from Unknown to Unknown/Multiple

Changed 5 years ago by simonmar

  • os changed from Unknown to Unknown/Multiple

Changed 3 years ago by merehap

  • cc merehap@… added
  • failure set to None/Unknown

Changed 5 months ago by morabbin

Given that GHC 7's error messages are generally more informative, and in these cases produce very friendly messages:

    Couldn't match expected type `IO b0'
                with actual type `Char -> IO ()'
    In a stmt of a 'do' block: putChar
    In the expression:
      do { putChar 'a';
           putChar }
    In an equation for `main':
        main
          = do { putChar 'a';
                 putChar }

perhaps this ought to be closed as fixed. The message doesn't suggest a probable cause or fix, but I think that's fine here.

Changed 5 months ago by simonpj

  • status changed from new to closed
  • resolution set to fixed
Note: See TracTickets for help on using tickets.