Files
kotlin/idea/testData/quickfix/simplifyComparison/doubleNull.kt
2016-04-04 13:41:48 +03:00

11 lines
143 B
Kotlin
Vendored

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