I'm starting to get my feet wet with the new class constraint extensions in GHC 7.4.2, but I am having some problems getting a small example to work. The code is as follows:
{-# LANGUAGE UndecidableInstances,
MultiParamTypeClasses,
KindSignatures,
TypeFamilies,
Rank2Types,
ConstraintKinds,
FlexibleInstances,
OverlappingInstances #-}
module Test where
import GHC.Exts -- to get Constraint type constructor
class NextClass f where
type Ctxt f a :: Constraint
next :: (Ctxt f a) => a -> a
instance NextClass Int where
type Ctxt Int a = Num a
next b = b + 1
n :: (NextClass a) => a -> a
n v = next v
What I want to do is define a NextClass type class, which will allow me to (given a value x) get the next value of x for all types that are instances of the NextClass. To use the + operator, I need the Num a class constraint for Int.
However, GHC gives me the following error:
Could not deduce (Ctxt f0 a) arising from a use of `next'
from the context (NextClass a)
bound by the type signature for n :: NextClass a => a -> a
In the expression: next v
In an equation for `n': n v = next v
I suspect that GHC is telling me it does not have enough information to determine which constraint family instance to use.
Could someone explain what I am doing wrong here. Is this a correct use of constraint families?
TIA