summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/T4003B.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/rename/should_compile/T4003B.hs')
-rw-r--r--testsuite/tests/rename/should_compile/T4003B.hs19
1 files changed, 19 insertions, 0 deletions
diff --git a/testsuite/tests/rename/should_compile/T4003B.hs b/testsuite/tests/rename/should_compile/T4003B.hs
new file mode 100644
index 0000000000..24ce2432a2
--- /dev/null
+++ b/testsuite/tests/rename/should_compile/T4003B.hs
@@ -0,0 +1,19 @@
+
+{-# LANGUAGE DeriveDataTypeable #-}
+
+module T4003B where
+
+import {-# SOURCE #-} T4003A (HsExpr)
+
+import Data.Data
+
+data HsLit = HsChar
+ deriving (Data, Typeable)
+
+data HsOverLit id
+ = OverLit (HsExpr id)
+ deriving (Data, Typeable)
+
+data OverLitVal = HsIntegral
+ deriving (Data, Typeable)
+