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

5 lines
99 B
Plaintext
Vendored

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