d12a24418e
RemoveUselessCastFix.
9 lines
128 B
Kotlin
Vendored
9 lines
128 B
Kotlin
Vendored
// "Remove useless elvis operator" "true"
|
|
fun foo() {}
|
|
|
|
fun test() {
|
|
foo()
|
|
// comment
|
|
((({ "" } <caret>?: null)))
|
|
}
|