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

No -Wbadly-staged-types warning for required type argument
File: ```hs {-# LANGUAGE RequiredTypeArguments, TemplateHaskellQuotes #-} module M where import Language.Haskell.TH idVis :: forall a -> a -> a idVis _ x = x f :: forall a -> Code Q (a -> a) f a = [|| id @a ||] g :: forall a -> Code Q (a -> a) g a = [|| idVis a ||] ``` GHC warns about `f` (#23829) ``` M.hs:10:15: warning: [GHC-86357] [-Wbadly-staged-types] Badly staged type: a is bound at stage 1 but used at stage 2 | 10 | f a = [|| id @a ||] | ^ ``` This warning is correct. Attempting to splice `$$(f Int)` doesn't work, as described in the [manual](https://ghc.gitlab.haskell.org/ghc/doc/users_guide/using-warnings.html#ghc-flag--Wbadly-staged-types). However, there is no warning about `g`, even though it has the same problem.
issue