ref: dd5a0c75229d88171c33f9b85df9c80f5414c09a
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