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