summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving/should_fail/T2701.hs
blob: 37bffc827dfa6ccae5985f162709584c59ebaf0c (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE MagicHash, DeriveDataTypeable #-}
module T2700 where

import GHC.Prim

import Data.Data
import Data.Typeable

data Foo = MkFoo Int#
           deriving (Typeable, Data)