diff options
Diffstat (limited to 'testsuite/tests/arityanal/f8.hs')
-rw-r--r-- | testsuite/tests/arityanal/f8.hs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/tests/arityanal/f8.hs b/testsuite/tests/arityanal/f8.hs index 1c960556b5..6abb2b87e9 100644 --- a/testsuite/tests/arityanal/f8.hs +++ b/testsuite/tests/arityanal/f8.hs @@ -1,5 +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 +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 |