primitive-unlifted-2.2.0.0: src/Data/Primitive/Unlifted/Type.hs
{-# language CPP #-}
module Data.Primitive.Unlifted.Type
( UnliftedType
) where
#if !MIN_VERSION_base(4,16,0)
import GHC.Exts (TYPE, RuntimeRep(UnliftedRep))
#else
import GHC.Exts (UnliftedType)
#endif
#if !MIN_VERSION_base(4,16,0)
type UnliftedType = TYPE 'UnliftedRep
#endif