summaryrefslogtreecommitdiff
path: root/testsuite/tests/plugins/simple-plugin/Simple/DataStructures.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/plugins/simple-plugin/Simple/DataStructures.hs')
-rw-r--r--testsuite/tests/plugins/simple-plugin/Simple/DataStructures.hs9
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/tests/plugins/simple-plugin/Simple/DataStructures.hs b/testsuite/tests/plugins/simple-plugin/Simple/DataStructures.hs
new file mode 100644
index 0000000000..ffad889c60
--- /dev/null
+++ b/testsuite/tests/plugins/simple-plugin/Simple/DataStructures.hs
@@ -0,0 +1,9 @@
+{-# LANGUAGE DeriveDataTypeable #-}
+
+module Simple.DataStructures where
+
+import Data.Data
+import Data.Typeable
+
+data ReplaceWith = ReplaceWith String
+ deriving (Data, Typeable) \ No newline at end of file