summaryrefslogtreecommitdiff
path: root/testdata/reduce06.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-05-11 20:57:07 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-05-12 00:50:34 +0200
commite4725c07ee3e7e3fc010df418d16f37c39b0af0f (patch)
treecb10e1d1203eed875955097311ccbe0943564226 /testdata/reduce06.out
parent95e006bf5afa8d3473e3fe4401f4c9316186a428 (diff)
mutual function definitions
Diffstat (limited to 'testdata/reduce06.out')
-rw-r--r--testdata/reduce06.out2
1 files changed, 1 insertions, 1 deletions
diff --git a/testdata/reduce06.out b/testdata/reduce06.out
index 2ddd9a75..f9da2c5d 100644
--- a/testdata/reduce06.out
+++ b/testdata/reduce06.out
@@ -6,7 +6,7 @@ constf = _lhs constf (_rhs \(a :: _) (_ :: _) -> a)
6main = _lhs main (_rhs ((\(a :: _) -> constf a False) True)) 6main = _lhs main (_rhs ((\(a :: _) -> constf a False) True))
7------------ core code 7------------ core code
8constf :: forall a b . a -> b -> a 8constf :: forall a b . a -> b -> a
9constf = \_ _ -> _rhs \a _ -> a 9constf = \a b -> _rhs \c _ -> c
10 10
11main :: Bool 11main :: Bool
12main = _rhs True 12main = _rhs True