Files
kotlin-fork/compiler/testData/codegen/boxInline/simple/vararg.2.kt
T
2015-04-07 13:08:53 +03:00

5 lines
107 B
Kotlin
Vendored

package test
inline fun doSmth(vararg a: String) : String {
return a.foldRight("", { a, b -> a + b})
}