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 8.8+ parenthesizes GADT fields incorrectly with :info
Load the following code into GHCi using 8.8 or later: ```hs {-# LANGUAGE GADTs #-} module Bug where data T where MkT :: (Int -> Int) -> T ``` And then try `:info T`: ``` λ> :info T data T where MkT :: Int -> Int -> T -- Defined at Bug.hs:4:1 ``` Eek! Those parentheses around `Int -> Int` are required, but aren't showing up here. This is my fault, as I accidentally introduced this regression in commit 9d9e35574a92773d872efd58a67339a9e054a9f1. When pretty-printing fields in a GADT type signature, I should have been using `funPrec`, not `topPrec`, since the fields are interspersed with arrows. Unfortunately, no regression tests existed to catch my mistake. Patch incoming.
issue