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

TemplateHaskell feature request: reifyType/reifyKind
As discussed in !1438, it would be nice to have a generalized combinator to reify the type or kind of a thing by name: ``` reifyType :: Name -> Q Type ``` * `reifyType 'not` would produce a representation of `Bool -> Bool` * `reifyType ''Either` would produce a representation of `Type -> Type -> Type` `reifyType` should work regardless of existence of a user-written signature: ``` -- no sig for 'f' f = not reifyType 'f -- reifies the inferred type Bool->Bool ``` This combinator is a more general replacement for `reifyKiSig` that !1438 currently implements.
issue