Files
kotlin-fork/idea/testData/intentions/simplifyBooleanWithConstants/reduceableBinaryWithParenthese.kt
T

4 lines
71 B
Kotlin
Vendored

fun foo(y: Boolean) {
val x = 3
<caret>x != x && (2 > 1 || y)
}