summaryrefslogtreecommitdiff
path: root/compiler/types
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2019-12-29 21:03:35 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-02-08 10:17:55 -0500
commitc2e301aeeae353a64be43e5fa9e7d464797d5648 (patch)
treeb5b4b564552c3731079528dadbdc138cafad7498 /compiler/types
parent7d452be454857549679b93a0682a3f6fedf5d7c1 (diff)
downloadhaskell-c2e301aeeae353a64be43e5fa9e7d464797d5648.tar.gz
compiler: Qualify imports of Data.List
Diffstat (limited to 'compiler/types')
-rw-r--r--compiler/types/TyCoSubst.hs2
-rw-r--r--compiler/types/TyCoTidy.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler/types/TyCoSubst.hs b/compiler/types/TyCoSubst.hs
index 0d676ed5fa..e15d2d69d7 100644
--- a/compiler/types/TyCoSubst.hs
+++ b/compiler/types/TyCoSubst.hs
@@ -80,7 +80,7 @@ import UniqFM
import UniqSet
import Outputable
-import Data.List
+import Data.List (mapAccumL)
{-
%************************************************************************
diff --git a/compiler/types/TyCoTidy.hs b/compiler/types/TyCoTidy.hs
index 649a7dee11..77dc32c39b 100644
--- a/compiler/types/TyCoTidy.hs
+++ b/compiler/types/TyCoTidy.hs
@@ -28,7 +28,7 @@ import Var
import VarEnv
import Util (seqList)
-import Data.List
+import Data.List (mapAccumL)
{-
%************************************************************************