Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
specifyExplicitLambdaSignature
/
lambdaWithLambdaAsParam.kt
blob: f75d0ebc64490da31df750c91b650eb36c5e2923 [
file
] [
log
] [
blame
]
public
class
TestingUse
{
fun test6
(
funcLitfunc
:
((
x
:
Int
)
->
Int
)
->
Boolean
,
innerfunc
:
(
y
:
Int
)
->
Int
):
Unit
{
}
}
fun main
()
{
val funcInfunc
=
TestingUse
().
test6
({<
caret
>
f
->
f
(
5
)
>
20
},
{
x
->
x
+
2
})
}