[project @ 1996-01-08 20:28:12 by partain]
[ghc-hetmet.git] / ghc / compiler / tests / rename / 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 [])