Files
2021-01-29 16:55:26 +03:00

15 lines
285 B
Kotlin
Vendored

fun test_1(s: String?) {
when {
!s.isNullOrEmpty() -> s.length // Should be OK
}
}
fun test_2(s: String?) {
// contracts related
if (s.isNullOrEmpty()) {
s<!UNSAFE_CALL!>.<!>length // Should be bad
} else {
s.length // Should be OK
}
}