#2639: Core lint failure with type families, data families, and typeclasses
---------------------------------+------------------------------------------
    Reporter:  ryani             |       Owner:                  
        Type:  bug               |      Status:  new             
    Priority:  normal            |   Component:  Compiler        
     Version:  6.8.3             |    Severity:  normal          
    Keywords:                    |    Testcase:                  
Architecture:  Unknown/Multiple  |          Os:  Unknown/Multiple
---------------------------------+------------------------------------------
 I haven't been able to shrink this case smaller and still fail core lint.

 {{{
 {-# LANGUAGE TypeFamilies, EmptyDataDecls #-}
 module CoreLint where

 data Eps

 data family Work a v
 data instance Work Eps v = Eps v

 type family Dual a
 type instance Dual Eps = Eps

 class Connect s where
     connect :: (Dual s ~ c, Dual c ~ s) => Work s a -> Work c b -> (a,b)

 instance Connect Eps where
     connect (Eps a) (Eps b) = (a,b)
 }}}

 Output from ghc -dcore-lint is attached

-- 
Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/2639>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
_______________________________________________
Glasgow-haskell-bugs mailing list
[email protected]
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs

Reply via email to