packages feed

fourmolu-0.20.1.0: data/examples/declaration/value/function/infix/op-chain-r-eq-dollar-2-four-out.hs

-- Right chain, $ case, 2 operators with p(a) == p($)
p :: Int
p =
    1
        `seq` 2
        `seq` 3
        `seq` 4
        $ 5
        `seq` 6
        `seq` 7
        `seq` 8