diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-12-29 21:03:35 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-08 10:17:55 -0500 |
commit | c2e301aeeae353a64be43e5fa9e7d464797d5648 (patch) | |
tree | b5b4b564552c3731079528dadbdc138cafad7498 /ghc/Main.hs | |
parent | 7d452be454857549679b93a0682a3f6fedf5d7c1 (diff) | |
download | haskell-c2e301aeeae353a64be43e5fa9e7d464797d5648.tar.gz |
compiler: Qualify imports of Data.List
Diffstat (limited to 'ghc/Main.hs')
-rw-r--r-- | ghc/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/Main.hs b/ghc/Main.hs index 77d2616bd1..6514a00345 100644 --- a/ghc/Main.hs +++ b/ghc/Main.hs @@ -80,7 +80,7 @@ import Control.Monad import Control.Monad.Trans.Class import Control.Monad.Trans.Except (throwE, runExceptT) import Data.Char -import Data.List +import Data.List ( isPrefixOf, partition, intercalate ) import Data.Maybe import Prelude |