7 lines
98 B
Kotlin
Vendored
7 lines
98 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun test(s: String?): Int? {
|
|
return s?.let<caret> {
|
|
it.length
|
|
}
|
|
} |