shithub: MicroHs

ref: 44dc3008bc938e223f0d4c9a44a1f48f9a1448a7
dir: /lib/Data/Proxy.hs/

View raw version
module Data.Proxy(module Data.Proxy) where
import Prelude

-- NOTE: not polykinded yet
data Proxy a = Proxy

instance forall a . Show (Proxy a) where
  show _ = "Proxy"

instance forall a . Eq (Proxy a) where
  _ == _  =  True