1-- This is a shim for GHC before 7.8. Cabal ignores it
2-- for GHC 7.8 and later.
3module Data.Coerce (coerce) where
4
5import Unsafe.Coerce (unsafeCoerce)
6
7coerce :: a -> b
8coerce = unsafeCoerce
9