packages feed

fourmolu-0.0.6.0: data/examples/declaration/value/function/pattern/unboxed-sum-pattern.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 #)