Files
kotlin/idea/testData/quickfix/surroundWithNullCheck/nullableInCondition.kt

8 lines
121 B
Kotlin
Vendored

// "Surround with null check" "true"
// WITH_RUNTIME
fun foz(arg: String?) {
if (arg<caret>.isNotEmpty()) {
}
}