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