fourmolu-0.2.0.0: data/examples/declaration/value/function/comprehension/transform-multi-line1-four-out.hs
{-# LANGUAGE TransformListComp #-}
foo' xs ys =
[ ( x
, y
)
| x <- xs
, y <- ys
, then
-- First comment
reverse -- Second comment
]