packages feed

fourmolu-0.6.0.0: data/examples/module-header/multiline-with-comments-four-ie-out.hs

{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE TypeFamilies #-}

-- | Header.
module My.Module
    ( -- * Something
      foo
    , bar
      -- | A multiline
      -- comment here
    , bar2

      -- * Another thing
    , (<?>)
    {- some other thing -} , foo2 -- yet another
    , foo3 -- third one
    , baz
    , bar2 -- a multiline comment
    -- the second line
    , bar3
    , module Foo.Bar.Baz
    )
where

-- Wow