7 lines
224 B
Kotlin
Vendored
7 lines
224 B
Kotlin
Vendored
public fun test(o: String?): Boolean {
|
|
return when {
|
|
// Data flow info should propagate from o == null to o.length
|
|
o == null, <!DEBUG_INFO_SMARTCAST!>o<!>.length == 0 -> false
|
|
else -> true
|
|
}
|
|
} |