Files
kotlin-fork/idea/testData/intentions/splitIf/operatorOutsideIf.kt
T
2015-05-27 16:15:51 +03:00

8 lines
121 B
Kotlin
Vendored

// IS_APPLICABLE: false
fun foo() {
val a = true
val b = false
if (a) {
val v = a <caret>&& b
}
}