Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionFunctions
/
kt4228.kt
blob: 9906d20305fa913bfa1515cd51b0b52447ef2cde [
file
]
class
A
{
companion
object
}
val foo
:
Any
.()
->
Unit
=
{}
fun test
()
{
A
.(
foo
)()
}
fun box
():
String
{
test
()
return
"OK"
}