(hs)ghci> import Data.Proxy
ghci> :t Proxy
Proxy :: Proxy t
ghci> :t Proxy :: Proxy Int
Proxy :: Proxy Int :: Proxy Int
(hs)ghci> :set -XDataKinds
ghci> :t Proxy :: Proxy 0
Proxy :: Proxy 0 :: Proxy 0
ghci> :t Proxy :: Proxy "abc"
Proxy :: Proxy "abc" :: Proxy "abc"