Simon Peyton Jones pushed to branch wip/T23109 at Glasgow Haskell Compiler / GHC

Commits:

2 changed files:

Changes:

  • compiler/GHC/Tc/Solver/Monad.hs
    ... ... @@ -37,7 +37,7 @@ module GHC.Tc.Solver.Monad (
    37 37
     
    
    38 38
         -- TcSMode
    
    39 39
         TcSMode(..), getTcSMode, setTcSMode,
    
    40
    -    
    
    40
    +
    
    41 41
         -- The pipeline
    
    42 42
         StopOrContinue(..), continueWith, stopWith,
    
    43 43
         startAgainWith, SolverStage(Stage, runSolverStage), simpleStage,
    

  • compiler/GHC/Tc/Solver/Solve.hs-boot
    1
    +module GHC.Tc.Solver.Solve where
    
    2
    +
    
    3
    +import GHC.Tc.Solver.Monad( TcS )
    
    4
    +import GHC.Tc.Types.Constraint( WantedConstraints, Cts )
    
    5
    +
    
    6
    +solveSimpleWanteds :: Cts -> TcS WantedConstraints
    \ No newline at end of file