summaryrefslogtreecommitdiff
path: root/testsuite/tests/arityanal/f8.hs
blob: 1c960556b5580b0619ff175081cb866e97c327c4 (plain)
1
2
3
4
5
module F8 where

f8f b x y = let g = \z -> x+y+z
	    in if b then y else g (x*x)
f8 = f8f True 1 2