RTS.hs 211 B

12345678910
  1. {-# OPTIONS -fglasgow-exts -cpp #-}
  2. module RTS(cast, Typeable, mkTyCon, mkTyConApp) where
  3. import GHC.Base
  4. import Data.Typeable(Typeable, mkTyCon, mkTyConApp)
  5. cast :: a -> b
  6. cast = unsafeCoerce#
  7. type Code = ()