

-
Sometimes cabal's output is confusing with regards to optimization levels: https://github.com/haskell/cabal/issues/6221
-
CodeRabbit
CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
-
ghc
Mirror of the Glasgow Haskell Compiler. Please submit issues and patches to GHC's Gitlab instance (https://gitlab.haskell.org/ghc/ghc). First time contributors are encouraged to get started with the newcomers info (https://gitlab.haskell.org/ghc/ghc/wikis/contributing).
bss@monster % ghci GHCi, version 8.8.4: https://www.haskell.org/ghc/ :? for help Loaded GHCi configuration from /home/bss/.ghc/ghci.conf GHCi> :t foldMap foldMap :: (Foldable t, Monoid m) => (a -> m) -> t a -> m GHCi> :t fold :1:1: error: • Variable not in scope: fold • Perhaps you meant one of these: ‘foldl’ (imported from Prelude), ‘foldr’ (imported from Prelude) GHCi> :t Data.Foldable.fold Data.Foldable.fold :: (Foldable t, Monoid m) => t m -> m GHCi> :t foldMap id foldMap id :: (Foldable t, Monoid m) => t m -> m
-
See the full project.