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

5 lines
114 B
Plaintext
Vendored

// WITH_RUNTIME
val nullableString: String? = "abc"
val foo = nullableString?.toUpperCase()?.toLowerCase() ?: ""