aihc-parser-1.0.0.2: test/Test/Fixtures/oracle/LambdaCase/lambda-case-in-application.hs
{- ORACLE_TEST pass -}
{-# LANGUAGE LambdaCase #-}
module LambdaCaseInApplication where
describeMany :: [Maybe Int] -> [String]
describeMany =
map
(\case
Just n -> "just"
Nothing -> "nothing"
)