ghc-typelits-natnormalise icon indicating copy to clipboard operation
ghc-typelits-natnormalise copied to clipboard

Normalise GHC.TypeLits.Nat equations

Results 13 ghc-typelits-natnormalise issues
Sort by recently updated
recently updated
newest added

While #34 appears to be fixed, another issue around inequalities and subtraction occurs. The following invalid inference rule is accepted: ```haskell invalid :: forall x y n. (x - n...

This happens with: ```haskell type family F (a :: Nat) (b :: Nat) :: Nat proxyEq5 :: forall a b . KnownNat (F (a * 3) b * 3) =>...