ref: a4229eb282ca32bc14103a33092e94382c3c7ca0
dir: /lib/Data/Coerce.hs/
module Data.Coerce(Coercible, coerce) where import Prelude() import Primitives type Coercible :: forall k . k -> k -> Constraint class Coercible a b coerce :: forall a b . Coercible a b => a -> b coerce = primUnsafeCoerce