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