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