ormolu-0.5.1.0: data/examples/declaration/value/function/unboxed-sums.hs
{-# LANGUAGE UnboxedSums #-}
foo :: (# Int|Bool #)
foo = (# 1 | #)
bar :: (#Int|Int|Int|Int #)
bar = (# | |2| #)
baz :: (# Int |
Int | Int | Int | Int | Int | Int |
Int | Int #)
baz = (# |
| | 10 | | | |
| #)
type UbxPair = (# | #)