4 lines
72 B
Kotlin
Vendored
4 lines
72 B
Kotlin
Vendored
fun test(e: Int.() -> String) {
|
|
val s = 3.e()
|
|
val ss = 3.(e)()
|
|
} |