6 lines
107 B
Kotlin
Vendored
6 lines
107 B
Kotlin
Vendored
// "Simplify comparison" "true"
|
|
fun foo(x: Int, arg: Boolean) {
|
|
if (arg && <caret>x != null) {
|
|
|
|
}
|
|
} |