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 /testsuite/tests/ghci/scripts/ghci008.stdout | |
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 'testsuite/tests/ghci/scripts/ghci008.stdout')
-rw-r--r-- | testsuite/tests/ghci/scripts/ghci008.stdout | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/ghci/scripts/ghci008.stdout b/testsuite/tests/ghci/scripts/ghci008.stdout index 057e9b298a..9d9c26ecb1 100644 --- a/testsuite/tests/ghci/scripts/ghci008.stdout +++ b/testsuite/tests/ghci/scripts/ghci008.stdout @@ -32,5 +32,5 @@ class (RealFrac a, Floating a) => RealFloat a where -- Defined in ‘GHC.Float’ instance RealFloat Float -- Defined in ‘GHC.Float’ instance RealFloat Double -- Defined in ‘GHC.Float’ -Data.OldList.isPrefixOf :: Eq a => [a] -> [a] -> Bool - -- Defined in ‘Data.OldList’ +base-4.8.0.0:Data.OldList.isPrefixOf :: Eq a => [a] -> [a] -> Bool + -- Defined in ‘base-4.8.0.0:Data.OldList’ |