Files
kotlin-fork/idea/testData/quickfix/expressions/uselessElvisForLambdaInNecessaryNestedParens.kt
T
2021-05-27 19:32:03 +03:00

9 lines
128 B
Kotlin
Vendored

// "Remove useless elvis operator" "true"
fun foo() {}
fun test() {
foo()
// comment
((({ "" } <caret>?: null)))
}