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

8 lines
113 B
Kotlin
Vendored

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