diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2014-09-18 23:05:40 +0200 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2014-09-18 23:12:57 +0200 |
commit | a94dc4c3067c6a0925e2e39f35ef0930771535f1 (patch) | |
tree | d96b8f833afd8e7ba7ea987f9cd1c7257a409f3b /testsuite/tests/simplCore | |
parent | eae19112462fe77a3f1298bff12b409b205a581d (diff) | |
download | haskell-a94dc4c3067c6a0925e2e39f35ef0930771535f1.tar.gz |
Move Applicative/MonadPlus into GHC.Base
This is necessary in order to invert the import-dependency between
Data.Foldable and Control.Monad (for addressing #9586)
This also updates the `binary` submodule to qualify a GHC.Base import
Reviewed By: austin
Differential Revision: https://phabricator.haskell.org/D223
Diffstat (limited to 'testsuite/tests/simplCore')
-rw-r--r-- | testsuite/tests/simplCore/should_compile/T5359a.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/simplCore/should_compile/T5359a.hs b/testsuite/tests/simplCore/should_compile/T5359a.hs index 993fbabd54..7b9c317567 100644 --- a/testsuite/tests/simplCore/should_compile/T5359a.hs +++ b/testsuite/tests/simplCore/should_compile/T5359a.hs @@ -2,7 +2,7 @@ module T5359a (linesT) where -import GHC.Base +import GHC.Base hiding (empty) import GHC.Word import GHC.ST (ST(..), runST) |