a901de5112
Fixes relevant "replace let" and "if to elvis" cases
5 lines
107 B
Kotlin
Vendored
5 lines
107 B
Kotlin
Vendored
class My(val x: Int)
|
|
|
|
fun foo(arg: Any?): Int {
|
|
return if (<caret>arg is My) arg.x.hashCode() else 42
|
|
} |