blob: 0cf91eaa2a60ea5bc473ee1a9b84e99d68e60693 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{-# LANGUAGE DataKinds #-}
module Main (main) where
import Data.Typeable
import GHC.Types
main :: IO ()
main = do
print (typeOf (Proxy :: Proxy 'Just))
print (typeOf (Proxy :: Proxy (TYPE 'LiftedRep)))
print (typeOf (Proxy :: Proxy (TYPE 'UnliftedRep)))
|