a901de5112
Fixes relevant "replace let" and "if to elvis" cases
5 lines
94 B
Plaintext
Vendored
5 lines
94 B
Plaintext
Vendored
class My(val x: Int)
|
|
|
|
fun foo(arg: Any?): Int {
|
|
return (arg as? My)?.x?.hashCode() ?: 42
|
|
} |