例如
{-# LANGUAGE LambdaCase #-} test'' = [Just 1, Nothing, Just 3] >>= \case Just x -> [1, 2] >>= \y -> return (x, y) _ -> fail "..."