Files
kotlin-fork/idea/testData/intentions/convertTwoComparisonsToRangeCheck/charInclusive.kt
T

3 lines
56 B
Kotlin
Vendored

fun foo(bar: Char) {
bar > 'a' && 'z' > bar<caret>
}