Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
NoSuggestUndecidableInstaces :: SuggestUndecidableInstancesghc GHC.Tc.Errors.Types No documentation available.
NonCanonicalMonoid :: NonCanonical_Monoid -> NonCanonicalDefinitionghc GHC.Tc.Errors.Types Related to (<>) and mappend.
-
ghc GHC.Tc.Errors.Types Possible cases for the -Wnoncanonical-monoid-instances.
-
ghc GHC.Tc.Errors.Types No documentation available.
data
RoleValidationFailedReason ghc GHC.Tc.Errors.Types No documentation available.
data
SuggestUndecidableInstances ghc GHC.Tc.Errors.Types No documentation available.
SynAbstractDataInvalidRHS :: !NonEmpty Type -> SynAbstractDataErrorghc GHC.Tc.Errors.Types The type synonym RHS contained invalid types, e.g. a type family or a forall.
TcRnExpectedValueId :: TcTyThing -> TcRnMessageghc GHC.Tc.Errors.Types TcRnExpectedValueId is an error occurring when something that is not a value identifier is used where one is expected. Example(s): none Test cases: none
TcRnExportHiddenComponents :: IE GhcPs -> TcRnMessageghc GHC.Tc.Errors.Types TcRnExportHiddenComponents is an error that occurs when an export contains constructor or class methods that are not visible. Example(s): None Test cases: None
TcRnFieldUpdateInvalidType :: [(FieldLabelString, TcType)] -> TcRnMessageghc GHC.Tc.Errors.Types TcRnFieldUpdateInvalidType is an error occurring when an updated field's type mentions something that is outside the universally quantified variables of the data constructor, such as an existentially quantified type. Example(s): data X = forall a. MkX { f :: a } x = (MkX ()) { f = False } Test cases: patsynshould_failrecords-exquant typecheckshould_failT3323