Files
kotlin-fork/idea/testData/inspectionsLocal/branched/ifThenToSafeAccess/nullCheckWithSelectorCallChain.kt
T
2017-12-26 18:39:47 +03:00

9 lines
167 B
Kotlin
Vendored

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