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

6 lines
109 B
Plaintext
Vendored

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