language-haskell icon indicating copy to clipboard operation
language-haskell copied to clipboard

Qualified infix type operator in export list causes issues

Open sheaf opened this issue 4 years ago • 0 comments

In GHC.TypeLits we see


module GHC.TypeLits
  ( -- ...
  , type (N.<=), type (N.<=?), type (N.+), type (N.*), type (N.^), type (N.-)
  , type N.Div, type N.Mod, type N.Log2
  -- ...

  ) where

The qualification of the symbolic operators causes an issue:

ghc-typelits-issue

sheaf avatar Jun 11 '21 18:06 sheaf