ref: b4a7a0d4c04ad0fb96d0b279d35da2658d58a0e1
dir: /tests/TypeLits.hs/
module TypeLits(main) where import Prelude import Data.TypeLits data PS (s :: Symbol) = PS data PN (s :: Nat) = PN natValInt :: forall (n :: Nat) . KnownNat n => PN n -> Int natValInt p = fromInteger (natVal p) main :: IO () main = do print $ symbolVal (PS :: PS "hello") print $ natVal (PN :: PN 42) print $ natValInt (PN :: PN 42)