Files
2022-05-01 16:40:04 +00:00

6 lines
70 B
Kotlin
Vendored

fun foo(x: String?) {
if (x != null) {
x!!.length
}
}