[project @ 2000-11-28 08:25:57 by simonpj]
[ghc-hetmet.git] / ghc / tests / typecheck / should_compile / tc027.hs
1 module ShouldSucceed where
2
3 h x = f (f True x) x 
4 f x y = if x then y else (g y x)
5 g y x = if x then y else (f x y)