Files
kotlin-fork/idea/testData/quickfix/simplifyComparison/doubleNull.kt
T
2018-10-11 17:19:10 +03:00

13 lines
174 B
Kotlin
Vendored

// "Simplify comparison" "true"
fun foo(x: String?) {
if (x == null) {
}
else {
if (<caret>x == null) {
bar()
}
}
}
fun bar() {}