blob: b2d1716ccdb895c35abdfcc858f5a9b372819db4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{-# LANGUAGE DataKinds #-}
module T9111 where
import Data.Typeable
a = typeRep (Proxy :: Proxy 'True)
b = typeRep (Proxy :: Proxy Typeable)
c = typeRep (Proxy :: Proxy (~))
d = typeRep (Proxy :: Proxy 'Left)
|