summaryrefslogtreecommitdiff
path: root/libraries/base/tests
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2021-08-23 13:30:44 +0100
committerMatthew Pickering <matthewtpickering@gmail.com>2021-12-02 17:05:30 +0000
commit64f213282bfe51a56ffb5937fa2bc74e4dabea40 (patch)
tree69ef5542d9c54b94e995828bdc2c99fa96ed2c29 /libraries/base/tests
parentd3c7f9be47ac99637ac0ede0759f77da320afaad (diff)
downloadhaskell-wip/revert-data-list.tar.gz
Revert "Data.List specialization to []"wip/revert-data-list
This reverts commit bddecda1a4c96da21e3f5211743ce5e4c78793a2. This implements the first step in the plan formulated in #20025 to improve the communication and migration strategy for the proposed changes to Data.List. Requires changing the haddock submodule to update the test output.
Diffstat (limited to 'libraries/base/tests')
-rw-r--r--libraries/base/tests/T9586.hs1
-rw-r--r--libraries/base/tests/list001.hs3
2 files changed, 1 insertions, 3 deletions
diff --git a/libraries/base/tests/T9586.hs b/libraries/base/tests/T9586.hs
index d496c30e49..cf1c35625c 100644
--- a/libraries/base/tests/T9586.hs
+++ b/libraries/base/tests/T9586.hs
@@ -4,6 +4,7 @@ module XPrelude (module X) where
import Control.Monad as X
import Data.Foldable as X
+import Data.List as X
import Data.Monoid as X
import Data.Traversable as X
import Prelude as X
diff --git a/libraries/base/tests/list001.hs b/libraries/base/tests/list001.hs
index 6ba7725a56..8f3babe607 100644
--- a/libraries/base/tests/list001.hs
+++ b/libraries/base/tests/list001.hs
@@ -2,9 +2,6 @@
{-# OPTIONS_GHC -Wno-compat-unqualified-imports #-}
module Main where
-import Prelude (Int, String, print, putStr, error,
- Eq (..), Ord (..), Num (..), Bool (..))
-
import Data.List
import Control.Exception