haskell-src-exts-1.15.0.1: 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 }