f89509ab5ed768e4a4bd5bcdf64c6837156e1f8e
[ghc-hetmet.git] / ghc / compiler / tests / stranal / test.lhs
1 > module Test where
2 > data LList t = Nill | Conss t (LList t)
3 > data BBool = TTrue | FFalse
4
5 > f Nill = TTrue
6 > f (Conss a as) = FFalse