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