fourmolu-0.20.0.0: data/examples/declaration/value/function/do-single-line-lambda-case-four-out.hs
processValue :: Maybe Int -> IO ()
processValue x = do putStrLn "Processing:"; \case { Just n -> print n; Nothing -> putStrLn "Empty" } x; putStrLn "Done"