blob: 22864d9c1d8405d525decec033aef8dd133836aa (
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 'Lifted)))
print (typeOf (Proxy :: Proxy (TYPE 'Unlifted)))
|