11 lines
197 B
Kotlin
Vendored
11 lines
197 B
Kotlin
Vendored
fun baz(s: String?): Int {
|
|
return <!DEBUG_INFO_SMARTCAST!>if (s == null) {
|
|
""
|
|
}
|
|
else {
|
|
val u: String? = null
|
|
if (u == null) return 0
|
|
u
|
|
}<!>.length
|
|
}
|