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

Incorrect warning when exporting a named default and the class
Consider this program ```hs {-# LANGUAGE NamedDefaults #-} module A ( Stringify(..), default Stringify ) where class Stringify a where stringify :: a -> String instance Stringify Int where stringify n = "Int: " ++ show n instance Stringify Bool where stringify b = "Bool: " ++ show b instance Stringify [Char] where stringify s = "String: " ++ s default Stringify (Int) ``` compile the module with oneshot mode (`-c`), by default you get the incorrect warning ``` [matt@nixos:~/ghc-interface]$ ghc -c A.hs A.hs:4:5: warning: [GHC-47854] [-Wduplicate-exports] ‘Stringify’ is exported by ‘default Stringify’ and ‘Stringify(..)’ | 4 | default Stringify | ^^^^^^^^^^^^^^^^^ ```
issue