Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
specifyExplicitLambdaSignature
/
multipleParam.kt.after
blob: 85586820feb3bcf1da8349f160ee2ad0910db147 [
file
] [
log
] [
blame
]
class
TestingUse
{
fun test4
(
printNum
:
(
a
:
Int
,
b
:
String
)
->
Unit
,
c
:
Int
):
Int
{
printNum
(
c
,
"This number is"
)
return
c
}
}
fun main
()
{
val num
=
TestingUse
().
test4
({
x
:
Int
,
str
:
String
->
},
5
)
}