summaryrefslogtreecommitdiff
path: root/testdata/let.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/let.out
parent95e006bf5afa8d3473e3fe4401f4c9316186a428 (diff)
mutual function definitions
Diffstat (limited to 'testdata/let.out')
-rw-r--r--testdata/let.out6
1 files changed, 3 insertions, 3 deletions
diff --git a/testdata/let.out b/testdata/let.out
index a3809ea8..3a5eb302 100644
--- a/testdata/let.out
+++ b/testdata/let.out
@@ -2,13 +2,13 @@ main is not found
2------------ desugared source code 2------------ desugared source code
3id = _lhs id \(a :: _) -> _rhs a 3id = _lhs id \(a :: _) -> _rhs a
4 4
5f = _lhs f \(a :: _) -> _rhs let b = _lhs y (_rhs (id a)) in b 5f = _lhs f \(a :: _) -> _rhs let b = id a in b
6------------ core code 6------------ core code
7f :: forall a . a -> a 7f :: forall a . a -> a
8f = \_ a -> _rhs a 8f = \a b -> _rhs b
9 9
10id :: forall a . a -> a 10id :: forall a . a -> a
11id = \_ a -> _rhs a 11id = \a b -> _rhs b
12------------ tooltips 12------------ tooltips
13testdata/let.lc 4:1-4:3 13testdata/let.lc 4:1-4:3
14 forall a . a -> a 14 forall a . a -> a