Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/kt6819.kt
T
Mikhail Glukhikh 1544755838 Test refactoring
2015-04-14 19:11:26 +03:00

7 lines
229 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
}
}