Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToElvis/nullCheckWithSelectorCallChain.kt
T
2019-06-07 12:23:54 +07:00

9 lines
165 B
Kotlin
Vendored

// WITH_RUNTIME
val nullableString: String? = "abc"
val foo = if (<caret>nullableString != null) {
nullableString.toUpperCase().toLowerCase()
} else {
""
}