summaryrefslogtreecommitdiff
path: root/testsuite/tests/driver/recomp010/X2.hs
blob: d57bda6a741fe43355ba745c373888168a2d6249 (plain)
1
2
3
4
5
6
7
8
9
10
module X (x, D1(..), D2(..))
where

data D1 = D { f :: D2 } -- deriving Show
data D2 = A | B -- deriving Show

x :: D1
x = D { f = B }