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