summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/deriving/should_fail/T2604.hs
blob: 0f830d992bff41fe7d3b20d27cc71c692b58c678 (plain)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE GeneralizedNewtypeDeriving #-}

module Test where

import Data.Typeable

data DList a = DList [a] deriving(Typeable)

newtype NList a = NList [a] deriving(Typeable)