Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
compiler
/
testData
/
codegen
/
box
/
funInterface
/
implIsNotFunction.kt
blob: 05024b312d0a3686704a36e1d252f9d1367ad9b2 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
fun
interface
Foo
{
fun invoke
():
String
}
fun foo
(
f
:
Foo
)
=
f
is
Function
<*>
fun box
():
String
{
assertFalse
(
foo
{
"zzz"
})
return
"OK"
}