Files
kotlin-fork/idea/testData/intentions/replaceSingleLineLetIntention/letWithMultipleMethodCall.kt.after
T
Mikhail Glukhikh a901de5112 KT-14084 related : replaceFirstReceiver now replaces ALL calls to safe calls if necessary
Fixes relevant "replace let" and "if to elvis" cases
2016-10-25 17:57:06 +03:00

7 lines
113 B
Plaintext
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: true
fun foo() {
val foo: String? = null
foo?.hashCode()?.hashCode()
}