bb225837211090f53f648a5ebce0e82f372902dc
[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 [])