diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2014-11-20 22:21:06 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-11-20 22:21:32 -0600 |
commit | e888b943396c21db74ba2fc69bf3a89e2473ea2b (patch) | |
tree | 2ff848d8c444877ef34ace40a298b973b2b208e1 /libraries/base/tests | |
parent | 86dda8f7adb887eb376a938dd48780e503b53a08 (diff) | |
download | haskell-e888b943396c21db74ba2fc69bf3a89e2473ea2b.tar.gz |
Hide `Data.OldList` module
Summary:
The `Data.OldList` module was originally created in
3daf0023d2dcf7caf85d61f2dc177f8e9421b2fd to provide a way to access the
original list-specialised functions from `Data.List`. It was also made
an exposed module in order to facilitate adapting the
`haskell2010`/`haskell98` packages. However, since the
`haskell2010`/`haskell98` packages were dropped, we no longer need to
expose `Data.OldList`.
Depends on D511
Reviewers: ekmett, austin
Reviewed By: ekmett, austin
Subscribers: thomie, carter
Differential Revision: https://phabricator.haskell.org/D513
Diffstat (limited to 'libraries/base/tests')
-rw-r--r-- | libraries/base/tests/foldableArray.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/tests/foldableArray.hs b/libraries/base/tests/foldableArray.hs index 5a5041f102..9c8757176f 100644 --- a/libraries/base/tests/foldableArray.hs +++ b/libraries/base/tests/foldableArray.hs @@ -16,7 +16,7 @@ import Control.DeepSeq #if __GLASGOW_HASKELL__ < 709 import qualified Data.List as L #else -import qualified Data.OldList as L +import qualified GHC.List as L #endif data BadElementException = BadFirst | BadLast deriving (Show, Typeable, Eq) |