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

10 lines
151 B
Plaintext
Vendored

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