packages feed

fourmolu-0.4.0.0: data/examples/other/disabling/single-definition.hs

module Foo (foo,bar) where

{- ORMOLU_DISABLE -}
foo :: Int -> Int
foo = (+5)
{- ORMOLU_ENABLE -}

bar :: Bool -> Bool
bar True  = True
bar False = True