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

6 lines
99 B
Kotlin
Vendored

// "Simplify comparison" "true"
fun foo(x: Int) {
if (<caret>x != null || x == null) {
}
}