Moving local fun callee generation to CallReceiver
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
fun box(): String {
|
||||
fun String.f() = this
|
||||
val vf: String.() -> String = { this }
|
||||
|
||||
val localExt = "O".f() + "K"?.f()
|
||||
if (localExt != "OK") return "localExt $localExt"
|
||||
|
||||
return "O".vf() + "K"?.vf()
|
||||
}
|
||||
Reference in New Issue
Block a user