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

HexFloatLiterals doesn't parse for unboxed Float# and Double# literals
In ghc 9.4.2 (reproduced in both ghci and ghc single-file mode) Test.hs: ``` {-# language HexFloatLiterals, MagicHash #-} module Test where import GHC.Types a = D# 0x1p0## ``` complains ``` Test.hs:6:1: error: parse error (possibly incorrect indentation or mismatched brackets) ``` but replacing it with `a = D# 1.0##` or `a = 0x1p0 :: Double` is fine. Similarly for floats.
issue