haskell-src-exts-1.24.0: tests/examples/LambdaCase.hs
{-# LANGUAGE LambdaCase #-}
module LambdaCase where
foo = \case
Nothing -> e1
Just e2 -> e2
bar = \ case { _ -> True }
{-# LANGUAGE LambdaCase #-}
module LambdaCase where
foo = \case
Nothing -> e1
Just e2 -> e2
bar = \ case { _ -> True }