ref: 9fcea2a5581d045efd60b6b6bd2b64ad6e4e9bd2
dir: /lib/Data/Proxy.hs/
module Data.Proxy(module Data.Proxy) where import Primitives import Data.Bool_Type import Data.Eq import Text.Show type Proxy :: forall (k::Kind) . k -> Type data Proxy a = Proxy instance forall a . Show (Proxy a) where show _ = "Proxy" instance forall a . Eq (Proxy a) where _ == _ = True