fourmolu-0.2.0.0: data/examples/declaration/class/newlines-and-default-decls-four-out.hs
class Foo a where
foo :: a
default foo :: ()
foo = ()
bar :: a
default bar :: ()
bar = ()
qux :: a
default qux :: ()
qux = ()