fourmolu-0.4.0.0: data/examples/declaration/value/function/record/wildcards-four-out.hs
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE RecordWildCards #-}
foo x y = Foo{x, y}
bar x y z =
Bar
{ x
, y
, z
, ..
}
baz = Baz{..}