ref: 8e4405a55b3531c0465b0abcd02a9cc8f14528f1 dir: /tests/LameCase.hs/
module LameCase where f :: Int -> Int f = \case 1 -> 2 2 -> 3 n -> n main :: IO () main = mapM_ (print . f) [1,2,3,4]