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

11 lines
159 B
Kotlin
Vendored

fun doSomething<T>(a: T) {}
fun foo() {
val a = true
val b = false
val c = true
if (a && b &<caret>& c) {
doSomething("test")
}
}