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

6 lines
107 B
Kotlin
Vendored

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