summaryrefslogtreecommitdiff
path: root/testsuite/tests/arityanal/should_compile/Arity08.hs
blob: 6abb2b87e9788092ee65498f73b35cb13468074d (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