1{-# LANGUAGE LambdaCase #-}
2
3test :: Bool -> Bool
4test = \case
5  False -> _
6  True -> _
7