diff options
Diffstat (limited to 'testsuite/tests/ghci/scripts/ghci027.stdout')
-rw-r--r-- | testsuite/tests/ghci/scripts/ghci027.stdout | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/testsuite/tests/ghci/scripts/ghci027.stdout b/testsuite/tests/ghci/scripts/ghci027.stdout index bbe355c17a..33b138d2da 100644 --- a/testsuite/tests/ghci/scripts/ghci027.stdout +++ b/testsuite/tests/ghci/scripts/ghci027.stdout @@ -1,8 +1,6 @@ -class (GHC.Base.Alternative m, GHC.Base.Monad m) => - GHC.Base.MonadPlus (m :: * -> *) where - ... - mplus :: m a -> m a -> m a -class (GHC.Base.Alternative m, GHC.Base.Monad m) => - GHC.Base.MonadPlus (m :: * -> *) where - ... - Control.Monad.mplus :: m a -> m a -> m a +class (Alternative m, Monad m) => MonadPlus (m :: * -> *) where
+ ...
+ mplus :: m a -> m a -> m a
+class (Alternative m, Monad m) => MonadPlus (m :: * -> *) where
+ ...
+ mplus :: m a -> m a -> m a
|