packages feed

haskell-tools-builtin-refactorings-1.0.0.0: examples/Pattern/UnboxedSum.hs

{-# LANGUAGE UnboxedSums #-}
module Pattern.UnboxedSum where

f :: (# Int | Bool #) -> ()
f (# i | #) = ()
f (# | b #) = ()