Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
cli
/
jvm
/
XnewInference
/
functionReferenceWithDefaultValuesFeatureIsEnabledWithNewInference.kt
blob: b4acfc32e1594ed6cd85725432ad808c5a8c6569 [
file
]
fun foo
(
a
:
String
,
b
:
Int
=
5
):
String
{
return
a
+
b
}
fun bar1
(
body
:
(
String
)
->
String
):
String
{
return
body
(
"something"
)
}
fun test
()
{
bar1
(::
foo
)
}