Files
kotlin-fork/compiler/testData/codegen/box/extensionFunctions/kt4228.kt
T
2020-03-10 15:19:34 +03:00

15 lines
143 B
Kotlin
Vendored

class A {
companion object
}
val foo: Any.() -> Unit = {}
fun test() {
A.(foo)()
}
fun box(): String {
test()
return "OK"
}