summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/typesig04.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-05-06 12:29:36 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-05-06 12:29:36 +0200
commitd353a29bb93d3105a763465300b28250117c3f40 (patch)
tree1517e23109d5e3c266b634b3c7af4dd4ca29e4d7 /testdata/language-features/basic-values/typesig04.out
parent3430070058610b6aeab2543bc050bb1cf2e95d0c (diff)
show typechecked source code in .out files & fix local function handling (again)
Diffstat (limited to 'testdata/language-features/basic-values/typesig04.out')
-rw-r--r--testdata/language-features/basic-values/typesig04.out9
1 files changed, 6 insertions, 3 deletions
diff --git a/testdata/language-features/basic-values/typesig04.out b/testdata/language-features/basic-values/typesig04.out
index e85b6781..0df6fc91 100644
--- a/testdata/language-features/basic-values/typesig04.out
+++ b/testdata/language-features/basic-values/typesig04.out
@@ -1,13 +1,16 @@
1main is not found 1main is not found
2------------ desugared source code 2------------ desugared source code
3fun1 :: forall (a :: _) (b :: _) (c :: _) . a -> (b -> c) -> () 3fun1 :: forall (a :: _) (b :: _) (c :: _) . a -> (b -> c) -> ()
4fun1 = \_ _ -> _rhs () 4fun1 = \(_ :: _) (_ :: _) -> _rhs ()
5 5
6fun2 :: forall (a :: _) (b :: _) (c :: _) . a -> (b -> c) -> () 6fun2 :: forall (a :: _) (b :: _) (c :: _) . a -> (b -> c) -> ()
7fun2 = \_ _ -> _rhs () 7fun2 = \(_ :: _) (_ :: _) -> _rhs ()
8------------ trace 8------------ core code
9fun1 :: forall a b c . a -> (b -> c) -> () 9fun1 :: forall a b c . a -> (b -> c) -> ()
10fun1 = \_ _ _ _ _ -> _rhs ()
11
10fun2 :: forall a b c . a -> (b -> c) -> () 12fun2 :: forall a b c . a -> (b -> c) -> ()
13fun2 = \_ _ _ _ _ -> _rhs ()
11------------ tooltips 14------------ tooltips
12testdata/language-features/basic-values/typesig04.lc 1:9-1:10 15testdata/language-features/basic-values/typesig04.lc 1:9-1:10
13 _f 16 _f