bb26ed024efee40581ac4bf4e49c8ea468d926b5
[ghc-hetmet.git] / ghc / tests / reader / should_compile / read006.hs
1 -- !!! Testing handling of troublesome constructor name (:::)
2 module MyList (MyList(Empty, (:::))) where
3
4 data MyList a =   Empty
5                 | (MyList a) ::: (MyList a)
6