GHC 8.10.1 introduced a new extension called ImportQualifiedPost.
Basically what it allows is the following syntax:
import A qualified
import B qualified as C
Since the extension is included in the upcoming Haskell standard after Haskell2010, namely GHC2021, I think it would be nice for brittany to have an option to use the new syntax. Any thoughts?
(This is a feature request)
GHC 8.10.1 introduced a new extension called ImportQualifiedPost. Basically what it allows is the following syntax:
Since the extension is included in the upcoming Haskell standard after
Haskell2010
, namely GHC2021, I think it would be nice forbrittany
to have an option to use the new syntax. Any thoughts?