8 lines
130 B
Kotlin
8 lines
130 B
Kotlin
// IS_APPLICABLE: false
|
|
fun foo() {
|
|
val a = true
|
|
val b = false
|
|
if (!(a <caret>&& b)) {
|
|
println("test")
|
|
}
|
|
} |