summaryrefslogtreecommitdiff
path: root/testdata/language-features/section
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/language-features/section
parent95e006bf5afa8d3473e3fe4401f4c9316186a428 (diff)
mutual function definitions
Diffstat (limited to 'testdata/language-features/section')
-rw-r--r--testdata/language-features/section/section01.out6
1 files changed, 3 insertions, 3 deletions
diff --git a/testdata/language-features/section/section01.out b/testdata/language-features/section/section01.out
index a06769e3..0252cce5 100644
--- a/testdata/language-features/section/section01.out
+++ b/testdata/language-features/section/section01.out
@@ -7,13 +7,13 @@ value1 = _lhs value1 \(a :: _) -> _rhs \(b :: _) -> a !@! b
7value2 = _lhs value2 \(a :: _) -> _rhs \(b :: _) -> b !@! a 7value2 = _lhs value2 \(a :: _) -> _rhs \(b :: _) -> b !@! a
8------------ core code 8------------ core code
9!@! :: forall a b . a -> b -> () 9!@! :: forall a b . a -> b -> ()
10!@! = \_ _ _ _ -> _rhs () 10!@! = \a b _ _ -> _rhs ()
11 11
12value1 :: forall a b . a -> b -> () 12value1 :: forall a b . a -> b -> ()
13value1 = \a b c -> _rhs \d -> () 13value1 = \a b c -> _rhs \d -> c !@! d
14 14
15value2 :: forall a b . a -> b -> () 15value2 :: forall a b . a -> b -> ()
16value2 = \a b c -> _rhs \d -> () 16value2 = \a b c -> _rhs \d -> d !@! c
17------------ tooltips 17------------ tooltips
18testdata/language-features/section/section01.lc 1:3-1:6 18testdata/language-features/section/section01.lc 1:3-1:6
19 forall a b . a -> b -> () 19 forall a b . a -> b -> ()