summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/deriving/should_run/drvrun022.hs
blob: fe95c3323b1dc400f096ce648ece206ebc60ce2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{-# LANGUAGE DeriveDataTypeable #-}

module Main where

-- GHC 6.4.1 output "testz" in z-encoded form!

import Data.Generics

data TestZ = TestZ { testz :: Int }
             deriving (Show, Read, Eq, Data, Typeable)

main = print $ constrFields . toConstr $ TestZ { testz = 2 }