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

3 lines
56 B
Kotlin
Vendored

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