summaryrefslogtreecommitdiff
path: root/testsuite/tests/arityanal/should_compile/Arity04.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/arityanal/should_compile/Arity04.hs')
-rw-r--r--testsuite/tests/arityanal/should_compile/Arity04.hs7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/tests/arityanal/should_compile/Arity04.hs b/testsuite/tests/arityanal/should_compile/Arity04.hs
new file mode 100644
index 0000000000..3c70acae4a
--- /dev/null
+++ b/testsuite/tests/arityanal/should_compile/Arity04.hs
@@ -0,0 +1,7 @@
+module F4 where
+
+f4h :: (Int -> Int) -> Int -> Int
+f4h f x = if x==0 then (f x)
+ else f4h f (x-1) -- + (f x)
+f4g = \y->y+1
+f4 = f4h f4g 9