Inline more default methods
[ghc-base.git] / GHC / Base.lhs
index 6293c12..401c157 100644 (file)
@@ -224,6 +224,7 @@ class  Monad m  where
     -- failure in a @do@ expression.
     fail        :: String -> m a
 
+    {-# INLINE (>>) #-}
     m >> k      = m >>= \_ -> k
     fail s      = error s
 \end{code}