[GHC] #11775: singleton classes in ghc.generics are defined but not exported
GHC
ghc-devs at haskell.org
Wed Mar 30 19:44:41 UTC 2016
#11775: singleton classes in ghc.generics are defined but not exported
-------------------------------------+-------------------------------------
Reporter: carter | Owner:
Type: bug | Status: new
Priority: normal | Milestone:
Component: Compiler | Version: 8.0.1-rc2
Resolution: | Keywords:
Operating System: Unknown/Multiple | Architecture:
| Unknown/Multiple
Type of failure: None/Unknown | Test Case:
Blocked By: | Blocking:
Related Tickets: | Differential Rev(s):
Wiki Page: |
-------------------------------------+-------------------------------------
Comment (by bgamari):
Yes, it's used in instances defined in `GHC.Generics`. e.g.,
{{{#!hs
instance (KnownSymbol n, SingI f, SingI r)
=> Constructor ('MetaCons n f r) where
conName _ = symbolVal (Proxy :: Proxy n)
conFixity _ = fromSing (sing :: Sing f)
conIsRecord _ = fromSing (sing :: Sing r)
}}}
--
Ticket URL: <http://ghc.haskell.org/trac/ghc/ticket/11775#comment:1>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
More information about the ghc-tickets
mailing list