fourmolu-0.2.0.0: data/examples/declaration/class/default-signatures-simple-four-out.hs
module Main where
-- | Something.
class Foo a where
-- | Foo
foo :: a -> String
default foo :: Show a => a -> String
foo = show
module Main where
-- | Something.
class Foo a where
-- | Foo
foo :: a -> String
default foo :: Show a => a -> String
foo = show