summaryrefslogtreecommitdiff
path: root/compiler/GHC/HsToCore.hs
diff options
context:
space:
mode:
authorOleg Grenrus <oleg.grenrus@iki.fi>2021-01-19 13:43:54 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-01-29 04:03:22 -0500
commit6fc920847f65e9b9f347bde42b2f9ec624468cfd (patch)
tree7585cb4198e5a0f96b7f05a47c1a4a9138008d8a /compiler/GHC/HsToCore.hs
parent37378a0b20d068f5704486dbd03b3f4099442965 (diff)
downloadhaskell-6fc920847f65e9b9f347bde42b2f9ec624468cfd.tar.gz
Add explicit import lists to Data.List imports
Related to a future change in Data.List, https://downloads.haskell.org/ghc/8.10.3/docs/html/users_guide/using-warnings.html?highlight=wcompat#ghc-flag--Wcompat-unqualified-imports Companion pull&merge requests: - https://github.com/judah/haskeline/pull/153 - https://github.com/haskell/containers/pull/762 - https://gitlab.haskell.org/ghc/packages/hpc/-/merge_requests/9 After these the actual change in Data.List should be easy to do.
Diffstat (limited to 'compiler/GHC/HsToCore.hs')
-rw-r--r--compiler/GHC/HsToCore.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/HsToCore.hs b/compiler/GHC/HsToCore.hs
index c1292c9275..3622d9f8af 100644
--- a/compiler/GHC/HsToCore.hs
+++ b/compiler/GHC/HsToCore.hs
@@ -86,7 +86,7 @@ import GHC.Unit
import GHC.Unit.Module.ModGuts
import GHC.Unit.Module.ModIface
-import Data.List
+import Data.List (partition)
import Data.IORef
import Control.Monad( when )
import GHC.Driver.Plugins ( LoadedPlugin(..) )