diff options
Diffstat (limited to 'testsuite/tests/arityanal/f8.hs')
-rw-r--r-- | testsuite/tests/arityanal/f8.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testsuite/tests/arityanal/f8.hs b/testsuite/tests/arityanal/f8.hs new file mode 100644 index 0000000000..1c960556b5 --- /dev/null +++ b/testsuite/tests/arityanal/f8.hs @@ -0,0 +1,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
\ No newline at end of file |