59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
15 lines
141 B
Kotlin
15 lines
141 B
Kotlin
class A {
|
|
default object
|
|
}
|
|
|
|
val foo: Any.() -> Unit = {}
|
|
|
|
fun test() {
|
|
A.(foo)()
|
|
}
|
|
|
|
fun box(): String {
|
|
test()
|
|
return "OK"
|
|
}
|