Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
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"
}
}