summaryrefslogtreecommitdiff
path: root/testsuite/tests/driver/T18733/Library1.hs
blob: a05015ed1fd09097f73d09882528b4192e6fef83 (plain)
1
2
3
4
5
6
7
module Library where

data A = ARecu B | ABase String deriving (Show)
data B = BRecu A | BBase Int deriving (Show)

info :: B
info = BBase 1