[project @ 2001-08-22 11:45:06 by sewardj]
[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)