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

11 lines
164 B
Kotlin
Vendored

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