DEBSOURCES
Skip Quicknav
sources / haskell-src-exts / 1.23.1-5 / tests / examples / LambdaCase.hs
12345678
{-# LANGUAGE LambdaCase #-} module LambdaCase where foo = \case Nothing -> e1 Just e2 -> e2 bar = \ case { _ -> True }