doc wibbles
[ghc-base.git] / Data / Typeable.hs-boot
index 057468e..9da3620 100644 (file)
@@ -5,20 +5,15 @@ module Data.Typeable where
 
 import Data.Maybe
 import GHC.Base
-import {-# SOURCE #-} GHC.IOBase
-import GHC.Show
 
 data TypeRep
 data TyCon
 
 mkTyCon      :: String -> TyCon
 mkTyConApp   :: TyCon -> [TypeRep] -> TypeRep
-showsTypeRep :: TypeRep -> ShowS
 
 cast :: (Typeable a, Typeable b) => a -> Maybe b
 
 class Typeable a where
   typeOf :: a -> TypeRep
 
-instance Typeable Exception
-