Hoogle Search
Within LTS Haskell 24.4 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
cgs_stmts :: CgState -> CmmAGraphghc GHC.StgToCmm.Monad No documentation available.
data
BootListMismatch item errghc GHC.Tc.Errors.Types Utility datatype to record errors when checking compatibity between two lists of things, e.g. class methods, associated types, type family equations, etc.
type
BootListMismatches item err = NonEmpty BootListMismatch item errghc GHC.Tc.Errors.Types No documentation available.
EmptyStmtListInDoBlock :: ConversionFailReasonghc GHC.Tc.Errors.Types No documentation available.
EmptyStmtsGroupInArrowNotation :: EmptyStatementGroupErrReasonghc GHC.Tc.Errors.Types Empty statement group in arrow notation Example: proc () -> do
EmptyStmtsGroupInDoNotation :: HsDoFlavour -> EmptyStatementGroupErrReasonghc GHC.Tc.Errors.Types Empty statement group in do notation Example: do
EmptyStmtsGroupInParallelComp :: EmptyStatementGroupErrReasonghc GHC.Tc.Errors.Types Empty statement group in a parallel list comprehension
EmptyStmtsGroupInTransformListComp :: EmptyStatementGroupErrReasonghc GHC.Tc.Errors.Types Empty statement group in a transform list comprehension Example: [() | then ()]
TcRnEmptyStmtsGroup :: EmptyStatementGroupErrReason -> TcRnMessageghc GHC.Tc.Errors.Types TcRnEmptyStmtsGroup is an error triggered by an empty list of statements in a statement block. For more information, see EmptyStatementGroupErrReason Example(s):
- () | then ()
TcRnLastStmtNotExpr :: HsStmtContextRn -> UnexpectedStatement -> TcRnMessageghc GHC.Tc.Errors.Types TcRnLastStmtNotExpr is an error caused by the last statement in a statement block not being an expression. Example(s): do x <- pure () do let x = 5 Test cases: renameshould_failT6060 parsershould_failT3811g parsershould_failreadFail028