summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/plugins/simple-plugin/Simple/DataStructures.hs
blob: ffad889c600d031174f6abfd920ecf7107fefbaf (plain)
1
2
3
4
5
6
7
8
9
{-# LANGUAGE DeriveDataTypeable #-}

module Simple.DataStructures where

import Data.Data
import Data.Typeable

data ReplaceWith = ReplaceWith String
                 deriving (Data, Typeable)