ormolu-0.2.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
module Foo (foo,bar) where
{- ORMOLU_DISABLE -}
foo :: Int -> Int
foo = (+5)
{- ORMOLU_ENABLE -}
bar :: Bool -> Bool
bar True = True
bar False = True