We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc810c5 commit dff50e9Copy full SHA for dff50e9
1 file changed
Control/Monad/Trans/Reader.hs
@@ -166,11 +166,7 @@ instance (Monad m) => Monad (ReaderT r m) where
166
a <- runReaderT m r
167
runReaderT (k a) r
168
{-# INLINE (>>=) #-}
169
-#if MIN_VERSION_base(4,8,0)
170
(>>) = (*>)
171
-#else
172
- m >> k = ReaderT $ \ r -> runReaderT m r >> runReaderT k r
173
-#endif
174
{-# INLINE (>>) #-}
175
#if !(MIN_VERSION_base(4,13,0))
176
fail msg = lift (fail msg)
0 commit comments