[project @ 2001-04-13 17:49:23 by lewie]
[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)