Files
kotlin-fork/idea/testData/inspectionsLocal/convertTwoComparisonsToRangeCheck/nonConstants.kt.after
T
2019-10-29 17:24:21 +07:00

4 lines
88 B
Plaintext
Vendored

// WITH_RUNTIME
fun foo(bar: Int, min: Int, max: Int) {
bar in (min + 1) until max
}