Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

GHCi fails to `:reload` modules that require a plugin after turning on collection of type info with `:set +c`
## Steps to reproduce ``` cabal init ``` Paste this into `app/Main.hs`: ```hs {-# OPTIONS_GHC -fplugin=MonadicBang #-} module Main where main :: IO () main = do print !(return 'a') ``` Add `monadic-bang` to your `*.cabal` file: ``` build-depends: base ^>=4.17.0.0, monadic-bang ``` ``` $ cabal repl ghci> :set +c ghci> :r Ok, one module loaded. Collecting type info for 1 module(s) ... Error while getting type info from Main: app/Main.hs:6:17: error: Bang pattern in expression context: !(return 'a') Did you mean to add a space after the '!'? ``` ## Expected behavior Load the module. ## Environment * GHC version used: 9.4.4 Optional: * Operating System: Mac * System Architecture: ARM (Mac M1)
issue