Files
kotlin-fork/idea/testData/intentions/convertRangeCheckToTwoComparisons/otherOp.kt
T

6 lines
109 B
Kotlin
Vendored

// IS_APPLICABLE: false
// WITH_RUNTIME
fun foo(bar: Int) {
if (bar in arrayOf(1, 2, 3)<caret>) {
}
}