packages feed

fourmolu-0.20.1.0: data/examples/other/comment-trailing-no-blank-line-four-out.hs

noBlankAfterComment = do
    a --
    b

noBlankTextComment = do
    a -- some text
    b

noBlankBlockComment = do
    a {- foo -}
    b

blockCommentFollowedByExpr = do
    a {- foo -} 1
    b

whereNoBlank = foo
  where
    a = a --
    b = b

letNoBlank =
    let a = a --
        b = b
     in c