5 lines
123 B
Kotlin
Vendored
5 lines
123 B
Kotlin
Vendored
package test
|
|
|
|
inline fun test(a: Int, b: Long, crossinline c: () -> String): String {
|
|
return { "${a}_${b}_${c()}"} ()
|
|
} |