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

10 lines
158 B
Kotlin
Vendored

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