7 lines
104 B
Kotlin
7 lines
104 B
Kotlin
fun foo() {
|
|
val a = true
|
|
val b = false
|
|
if (a <caret>&& !b) {
|
|
println("test")
|
|
}
|
|
} |