04ff2a3ee7
Currently, behavior is undesired, see KT-27241
11 lines
359 B
Kotlin
Vendored
11 lines
359 B
Kotlin
Vendored
// !LANGUAGE: +AllowContractsForCustomFunctions +UseReturnsEffect
|
|
// !USE_EXPERIMENTAL: kotlin.contracts.ExperimentalContracts
|
|
// !DIAGNOSTICS: -INVISIBLE_REFERENCE -INVISIBLE_MEMBER
|
|
|
|
import kotlin.contracts.*
|
|
|
|
fun f3(value: String?) {
|
|
if (<!USELESS_IS_CHECK!>!value.isNullOrEmpty() is Boolean<!>) {
|
|
<!DEBUG_INFO_SMARTCAST!>value<!>.length
|
|
}
|
|
} |