fourmolu-0.4.0.0: data/examples/other/disabling/single-definition-four-out.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