5 lines
77 B
Kotlin
Vendored
5 lines
77 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
fun foo(l: List<String>?) {
|
|
Pair(l?.joinToString(), "")
|
|
}
|