Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
resolvedCalls
/
arguments
/
functionLiterals
/
chainedLambdas.kt
blob: bb2ff2f0418dd5982ab8baa3a3a7ff9c2cb3b2bd [
file
]
fun
<
T
,
S
,
R
>
foo
(
t
:
T
,
f
:
(
T
)
->
S
,
g
:
(
S
)
->
R
)
{}
fun test
()
{
<caret>
foo
(
1
,
{
x
->
"$x"
},
{
y
->
y
.
length
})
}