Files
2022-10-05 15:06:52 +00:00

5 lines
90 B
Kotlin
Vendored

fun test(v: Any?) {
(v as? String)?.let { <expr>it</expr> ->
it.length
}
}