8 lines
121 B
Kotlin
Vendored
8 lines
121 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
fun foo() {
|
|
val a = true
|
|
val b = false
|
|
if (a) {
|
|
val v = a <caret>&& b
|
|
}
|
|
} |