Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/kt6819.kt
T
2015-11-25 15:39:23 +03:00

7 lines
271 B
Kotlin
Vendored

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