[project @ 1997-12-17 13:12:20 by simonm]
[ghc-hetmet.git] / ghc / tests / reader / should_compile / read006.hs
1 module MyList (MyList(Empty, (:::))) where
2
3 data MyList a =   Empty
4                 | (MyList a) ::: (MyList a)
5