summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values/lambda03.out
blob: f19a4176d24959418b16efe348be360070df7344 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
main is not found
------------ desugared source code
fun1 = _lhs fun1 (_rhs \(_ :: _) (a :: _) (_ :: _) -> a)

fun2 = _lhs fun2 \(a :: _) -> _rhs \(_ :: _) (_ :: _) (_ :: _) -> a
------------ core code
fun1 :: forall a b c . a -> b -> c -> b
fun1 = \a b c -> _rhs \_ d _ -> d

fun2 :: forall a b c d . a -> b -> c -> d -> a
fun2 = \a b c d e -> _rhs \_ _ _ -> e
------------ tooltips
1:1-1:5
    forall a b c . a -> b -> c -> b
1:22-1:23
    _d
2:1-2:5
    forall a b c d . a -> b -> c -> d -> a
2:25-2:26
    _h