Files
kotlin-fork/compiler/testData/codegen/box/extensionFunctions/kt4228.kt
T
Alexander Udalov 11dfdfc123 Minor, add test for obsolete issue
#KT-4228 Obsolete
2014-12-26 22:52:39 +03:00

15 lines
139 B
Kotlin

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