summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_fail/T2701.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/deriving/should_fail/T2701.hs')
-rw-r--r--testsuite/tests/deriving/should_fail/T2701.hs10
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/tests/deriving/should_fail/T2701.hs b/testsuite/tests/deriving/should_fail/T2701.hs
new file mode 100644
index 0000000000..37bffc827d
--- /dev/null
+++ b/testsuite/tests/deriving/should_fail/T2701.hs
@@ -0,0 +1,10 @@
+{-# LANGUAGE MagicHash, DeriveDataTypeable #-}
+module T2700 where
+
+import GHC.Prim
+
+import Data.Data
+import Data.Typeable
+
+data Foo = MkFoo Int#
+ deriving (Typeable, Data)