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