[project @ 1999-01-23 18:03:40 by sof]
[ghc-hetmet.git] / ghc / tests / rename / should_compile / rn003.hs
1 module Foo (f) where
2 -- export food
3 f x = x
4
5 -- !!! weird patterns with no variables
6 1  = f 1
7 [] = f []
8 1  = f (f 1)
9 [] = f (f [])