[project @ 1999-09-16 19:26:01 by sof]
[ghc-hetmet.git] / ghc / tests / typecheck / should_compile / tc073.hs
1
2 module ShouldSucceed where
3
4 f [] = []
5 f (x:xs) = x : (f xs)