packages feed

fourmolu-0.2.0.0: data/examples/declaration/value/function/pattern/unboxed-sum-pattern-four-out.hs

{-# LANGUAGE UnboxedSums #-}

v = True
  where
    (# _x #) = (# True #)

p = True
  where
    (# _x | #) = (# | True #)

q = True
  where
    (# | _x | #) = (# | True | #)

z = True
  where
    (# | | _x #) = (# | | True #)

z_multiline = True
  where
    (#
        | | _x
        #) =
            (#
                | | True
            #)