a901de5112
Fixes relevant "replace let" and "if to elvis" cases
9 lines
142 B
Kotlin
Vendored
9 lines
142 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// IS_APPLICABLE: true
|
|
|
|
fun foo() {
|
|
val foo: String? = null
|
|
foo?.let {
|
|
it.hashCode().hashCode()<caret>
|
|
}
|
|
} |