summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/ghci027.stdout
diff options
context:
space:
mode:
authorHerbert Valerio Riedel <hvr@gnu.org>2014-09-18 23:05:40 +0200
committerHerbert Valerio Riedel <hvr@gnu.org>2014-09-18 23:12:57 +0200
commita94dc4c3067c6a0925e2e39f35ef0930771535f1 (patch)
treed96b8f833afd8e7ba7ea987f9cd1c7257a409f3b /testsuite/tests/ghci/scripts/ghci027.stdout
parenteae19112462fe77a3f1298bff12b409b205a581d (diff)
downloadhaskell-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/ghci/scripts/ghci027.stdout')
-rw-r--r--testsuite/tests/ghci/scripts/ghci027.stdout8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/tests/ghci/scripts/ghci027.stdout b/testsuite/tests/ghci/scripts/ghci027.stdout
index 47ec533084..bbe355c17a 100644
--- a/testsuite/tests/ghci/scripts/ghci027.stdout
+++ b/testsuite/tests/ghci/scripts/ghci027.stdout
@@ -1,8 +1,8 @@
-class (Control.Monad.Alternative m, GHC.Base.Monad m) =>
- Control.Monad.MonadPlus (m :: * -> *) where
+class (GHC.Base.Alternative m, GHC.Base.Monad m) =>
+ GHC.Base.MonadPlus (m :: * -> *) where
...
mplus :: m a -> m a -> m a
-class (Control.Monad.Alternative m, GHC.Base.Monad m) =>
- Control.Monad.MonadPlus (m :: * -> *) where
+class (GHC.Base.Alternative m, GHC.Base.Monad m) =>
+ GHC.Base.MonadPlus (m :: * -> *) where
...
Control.Monad.mplus :: m a -> m a -> m a