blob: 7b4561420cfce3d98fa2c7418fbe9fdfe1e5794c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
module GHC.Tc.Utils.Unify where
import GHC.Prelude
import GHC.Tc.Utils.TcType ( TcTauType )
import GHC.Tc.Types ( TcM )
import GHC.Tc.Types.Evidence ( TcCoercion, HsWrapper )
import GHC.Tc.Types.Origin ( CtOrigin )
import GHC.Utils.Outputable( SDoc )
import GHC.Hs.Type ( Mult )
-- This boot file exists only to tie the knot between
-- GHC.Tc.Utils.Unify and Inst
unifyType :: Maybe SDoc -> TcTauType -> TcTauType -> TcM TcCoercion
unifyKind :: Maybe SDoc -> TcTauType -> TcTauType -> TcM TcCoercion
tcSubMult :: CtOrigin -> Mult -> Mult -> TcM HsWrapper
|