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