Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
funInterface
/
basicFunInterfaceConversion.kt
blob: 6bfc99a11091c18feeb3a8ddfc8843d7ad118ae5 [
file
]
fun
interface
Foo
{
fun invoke
():
String
}
fun foo
(
f
:
Foo
)
=
f
.
invoke
()
fun box
():
String
{
return
foo
{
"OK"
}
}