The hmatrix
package contains the following type families code:
type family BoundsOf x
type instance BoundsOf (a->a) = Int
type instance BoundsOf (a->a->a) = (Int,Int)
On GHC 7.6, this compiles fine.
On GHC 7.7 (leading to 7.8), we get:
lib/Numeric/ContainerBoot.hs:515:15:
Conflicting family instance declarations:
BoundsOf (a -> a) -- Defined at lib/Numeric/ContainerBoot.hs:515:15
BoundsOf (a -> a -> a)
-- Defined at lib/Numeric/ContainerBoot.hs:516:15
What kind of "conflict" is meant here? I cannot see the problem with these instances.
Update: Here is a minimal example Test.hs
:
{-# LANGUAGE TypeFamilies #-}
module Test where
type family BoundsOf x
type instance BoundsOf (a->a) = Int
type instance BoundsOf (a->a->a) = (Int,Int)
Trying that:
ghci Test.hs # 7.6, all fine
ghci-7.7 Test.hs # fails
Akio Takano managed to construct an example program that in GHC 7.6 coerces
Int
toIO String
using the type family declarationSee http://ghc.haskell.org/trac/ghc/ticket/8162 or https://github.com/takano-akio/type-family-overlap.