diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-12-29 21:03:35 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2020-01-12 09:36:28 -0500 |
commit | 2626debcd13d1226c922a6ce753ad1184bbbc3b6 (patch) | |
tree | d3e37e316a1a5ade411c27b9f77cefd7bdc83908 /ghc | |
parent | f75c4b5c224bfceaa92cdbe3a5f16dd94ea77c85 (diff) | |
download | haskell-2626debcd13d1226c922a6ce753ad1184bbbc3b6.tar.gz |
compiler: Qualify imports of Data.List
Diffstat (limited to 'ghc')
-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 b66f567d2f..9c0029f56f 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 |