036b02fb47cc8808ccf07a7b2f123714aa56cf48
[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