#7178: Panic in coVarsOfTcCo
---------------------------------+------------------------------------------
    Reporter:  simonpj           |       Owner:  simonpj         
        Type:  bug               |      Status:  new             
    Priority:  highest           |   Milestone:  7.6.1           
   Component:  Compiler          |     Version:  7.4.2           
    Keywords:                    |          Os:  Unknown/Multiple
Architecture:  Unknown/Multiple  |     Failure:  None/Unknown    
  Difficulty:  Unknown           |    Testcase:                  
   Blockedby:                    |    Blocking:                  
     Related:                    |  
---------------------------------+------------------------------------------

Comment(by simonpj):

 Specficially, in TcEvidence, we should replace this
 {{{
     -- We expect only coercion bindings
     go_bind :: EvBind -> VarSet
     go_bind (EvBind _ (EvCoercion co)) = go co
     go_bind (EvBind _ (EvId v))        = unitVarSet v
     go_bind other = pprPanic "coVarsOfTcCo:Bind" (ppr other)
 }}}
 with this instead
 {{{
     -- We expect only coercion bindings, so use evTermCoercion
     go_bind :: EvBind -> VarSet
     go_bind (EvBind _ tm) = go (evTermCoercion tm)
 }}}

-- 
Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/7178#comment:2>
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