I'm trying to get this trivial parsec code to compile

import Text.Parsec
simple = letter

but I keep getting this error

No instance for (Stream s0 m0 Char)
  arising from a use of `letter'
Possible fix: add an instance declaration for (Stream s0 m0 Char)
In the expression: letter
In an equation for `simple': simple = letter
link|improve this question

feedback

1 Answer

up vote 11 down vote accepted

I think you have ran against the monomorphism restriction. This restriction means: If a variable is declared with no explicit arguments, its type has to be monomorphic. This forces the typechecker to pick a particular instance of Stream, but it can't decide.

There are two ways to fight it:

  1. Give simple an explicit signature:

    simple :: Stream s m Char => ParsecT s u m Char
    simple = letter
    
  2. Disable the monorphism restriction:

    {-# LANGUAGE NoMonomorphismRestriction #-}
    import Text.Parsec
    simple = letter
    
link|improve this answer
Oh, normally you get an error saying "you can't do this due to the monomorphism restriction" when this happens. – Peter Jul 17 '11 at 10:42
I don't know why this is like it is. It ay be related to the new type inference engine in GHC 7. – FUZxxl Jul 17 '11 at 11:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.