Difference between revisions of "GHC/Error messages"

From HaskellWiki
< GHC
Jump to navigation Jump to search
("`foo' is not applied to enough type arguments")
Line 1: Line 1:
 
GHC error messages and their meaning.
 
GHC error messages and their meaning.
  +
  +
== "`foo' is not applied to enough type arguments" ==
  +
  +
TODO
  +
  +
Example: TODO
   
 
== "foo' is not a (visible) method of class `Bar'" ==
 
== "foo' is not a (visible) method of class `Bar'" ==

Revision as of 13:48, 3 December 2009

GHC error messages and their meaning.

"`foo' is not applied to enough type arguments"

TODO

Example: TODO

"foo' is not a (visible) method of class `Bar'"

This error message occurs when one tries to instantiate a class, but did not import the functions one tries to implement.

Example:

import Prelude hiding ((==))

data Foo = Foo

instance Eq Foo where 
    (==) a b = True

"Cannot match a monotype with `Foo'"

See this Haskell-Cafe thread.


"Parse error in pattern"

TODO

Example: TODO