summaryrefslogtreecommitdiff
path: root/testsuite/tests/arityanal/f13.hs
blob: 1b7a779c37d097fdee0d79608da95b4337568537 (plain)
1
2
3
4
5
6
7
8
module F13 where

f13 x y = let f13f = if (x>0) then \z -> z x y
		  		else \z -> y
	      f13h = let v = f13f 5
		     in \w -> w + v
	  in \u -> f13h u