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

f10f = \h -> (h 1 2, h 3)
f10g = \x -> \y -> x+y
f10h = f10f f10g
f10x1 = fst f10h
f10x2 = snd f10h
f10 = f10x2 f10x1