{-# OPTIONS -fglasgow-exts #-}
module Newtype (tests) where
-- The type of a newtype should treat the newtype as opaque
import Test.HUnit
import Data.Generics
newtype T = MkTIntderiving( Typeable )tests = show (typeOf (undefined :: T)) ~=?outputoutput = "T"