packages feed

fourmolu-0.16.1.0: data/examples/declaration/value/function/comprehension/transform-multi-line2-out.hs

{-# LANGUAGE TransformListComp #-}

bar' xs ys =
  [ ( x,
      y
    )
  | x <- xs,
    y <- ys,
    then
      -- First comment
      sortWith
    by
      ( x
          + y -- Second comment
      )
  ]