summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/parser/prog001/Read006.hs
blob: 87546cb5509baad87468d8597c83cfa33b86b90f (plain)
1
2
3
4
5
-- !!! Testing handling of troublesome constructor name (:::)
module Read006 (MyList(Empty, (:::))) where

data MyList a =   Empty
                | (MyList a) ::: (MyList a)